multiplier display

This commit is contained in:
2024-02-12 19:41:54 -06:00
parent 545796e297
commit 7a3a9c6254
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -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)));
}
}
}