forked from 2009Scape/Server
Added counts to support HCIM mode
Changed all checkRestrictions() to getMode.equals() (avoids multiple counts) Adjusted the player count message to include IM, HCIM, and UIM.
This commit is contained in:
parent
c6a440856c
commit
f82b1fd539
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ public final class PlayerCommandPlugin extends CommandPlugin {
|
|||
else if (p.getIronmanManager().getMode().equals(IronmanMode.HARDCORE)) {
|
||||
hardcoreIronmanCount++;
|
||||
}
|
||||
else if (p.getIronmanManager().getMode().equals(IronmanMode.STANDARD) ||p.getIronmanManager().getMode().equals(IronmanMode.HARDCORE_DEAD)) {
|
||||
else if (p.getIronmanManager().getMode().equals(IronmanMode.STANDARD)) {
|
||||
ironmanCount++;
|
||||
}
|
||||
if (p.isArtificial()){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue