Skip to content

Commit

Permalink
Translate side names in change sides messaging.
Browse files Browse the repository at this point in the history
  • Loading branch information
riverwanderer committed Sep 6, 2023
1 parent d3e7d20 commit 51ee5ae
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 51ee5ae

Please sign in to comment.