multiplier display

This commit is contained in:
2024-02-12 19:54:25 -06:00
parent 7a3a9c6254
commit c8246ff317
2 changed files with 2 additions and 10 deletions
+2 -1
View File
@@ -646,7 +646,8 @@ public class Mine extends AbstractGameObject {
player = PlayerCharacter.getFromCache(playerID);
for(Guild present : this.dividedPlayers.keySet()) {
int count = this.dividedPlayers.get(present).size();
ChatManager.chatSystemInfo(player,present.getName() + " COUNT: " + count + " MULTIPLIER: " + (1.0f - (count / this.totalPlayers)));
float multiplier = 1.0f - (count / this.totalPlayers);
ChatManager.chatSystemInfo(player,present.getName() + " COUNT: " + count + " MULTIPLIER: " + multiplier);
}
}
}