multiplier display

This commit is contained in:
2024-02-12 20:09:26 -06:00
parent f4778d4f48
commit 3d33a16d06
+2 -2
View File
@@ -646,8 +646,8 @@ public class Mine extends AbstractGameObject {
player = PlayerCharacter.getFromCache(playerID);
for(Guild present : this.dividedPlayers.keySet()) {
int count = this.dividedPlayers.get(present).size();
float multiplier = 1.0f - (count / this.totalPlayers);
ChatManager.chatSystemInfo(player,present.getName() + " COUNT: " + count + " MULTIPLIER: " + multiplier);
float multiplier = (float)(count / this.totalPlayers);
ChatManager.chatSystemInfo(player,present.getName() + " COUNT: " + count + " / " + this.totalPlayers);
}
}
}