Swap format argument order. Fixes #376

This commit is contained in:
Olof Larsson 2013-08-27 07:21:07 +02:00
parent 549aaaf494
commit 35af6ac0ea

View File

@ -484,7 +484,7 @@ public class FactionsListenerMain implements Listener
if (deniedCommands == null) return;
if (!containsCommand(command, deniedCommands)) return;
uplayer.msg("<b>You can't use \"<h>/%s<b>\" in %s territory.", Txt.getNicedEnum(rel), command);
uplayer.msg("<b>You can't use \"<h>/%s<b>\" in %s territory.", command, Txt.getNicedEnum(rel));
event.setCancelled(true);
}