mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2025-12-21 09:02:07 -07:00
Fixed character misgendering themselves during secondary bank account opening dialogue
This commit is contained in:
parent
49f3d3cff3
commit
053edc3f34
1 changed files with 2 additions and 1 deletions
|
|
@ -20,6 +20,7 @@ import core.game.node.entity.npc.AbstractNPC;
|
|||
import core.game.node.entity.npc.NPC;
|
||||
import core.game.node.entity.player.Player;
|
||||
import core.game.node.entity.player.link.IronmanMode;
|
||||
import core.game.node.entity.player.link.appearance.Gender;
|
||||
import core.game.node.entity.player.link.diary.DiaryType;
|
||||
import core.game.node.item.Item;
|
||||
import core.game.node.scenery.Scenery;
|
||||
|
|
@ -241,7 +242,7 @@ public final class BankingPlugin extends OptionHandler {
|
|||
stage = 11;
|
||||
break;
|
||||
case 11:
|
||||
player(FacialExpression.LAUGH,"Well of course I can, a man of my","status could afford a measly bank fee");
|
||||
player(FacialExpression.LAUGH,"Well of course I can, a " + (player.isMale() ? "man" : "woman") + " of my","status could afford a measly bank fee");
|
||||
stage = 12;
|
||||
break;
|
||||
case 12:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue