Skip to content

Commit

Permalink
Merge pull request #12661 from riverwanderer/12660-translate-side-nam…
Browse files Browse the repository at this point in the history
…es-in-side-change-msg

Translate side names in change sides messaging.
  • Loading branch information
uckelman authored Sep 10, 2023
2 parents 7fd33ab + 51ee5ae commit a422dab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ protected void launch() {
newSide
);

Command c = new Chatter.DisplayText(gm.getChatter(), Resources.getString(GlobalOptions.getInstance().chatterHTMLSupport() ? "PlayerRoster.changed_sides_2" : "PlayerRoster.changed_sides", GameModule.getGameModule().getPrefs().getValue(GameModule.REAL_NAME), mySide, newSide));
Command c = new Chatter.DisplayText(gm.getChatter(), Resources.getString(GlobalOptions.getInstance().chatterHTMLSupport() ? "PlayerRoster.changed_sides_2" : "PlayerRoster.changed_sides", GameModule.getGameModule().getPrefs().getValue(GameModule.REAL_NAME), translateSide(mySide), translateSide(newSide)));
c.execute();

final Remove r = new Remove(this, GameModule.getActiveUserId());
Expand Down

0 comments on commit a422dab

Please sign in to comment.