|
|
|
@ -646,8 +646,8 @@ public class Mine extends AbstractGameObject {
@@ -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); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|