forked from MagicBane/Server
multiplier display
This commit is contained in:
@@ -645,7 +645,8 @@ public class Mine extends AbstractGameObject {
|
||||
for(Integer playerID : this._playerMemory){
|
||||
player = PlayerCharacter.getFromCache(playerID);
|
||||
for(Guild present : this.dividedPlayers.keySet()) {
|
||||
ChatManager.chatSystemInfo(player,present.getName() + "COUNT: " + this.dividedPlayers.get(present).size());
|
||||
int count = this.dividedPlayers.get(present).size();
|
||||
ChatManager.chatSystemInfo(player,present.getName() + " COUNT: " + count + " MULTIPLIER: " + (1.0f - (count / this.totalPlayers)));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user