Skip to content
This repository was archived by the owner on Nov 25, 2021. It is now read-only.

Commit 9f7aae7

Browse files
popcounter changes
1 parent 60b8275 commit 9f7aae7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/gamesense/client/manager/managers/TotemPopManager.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ public enum TotemPopManager implements Manager {
7474

7575
if (playerPopCount.get(entityName) == null) {
7676
playerPopCount.put(entityName, 1);
77-
if(sendMsgs) MessageBus.sendClientPrefixMessage(chatFormatting + entityName + " popped " + ChatFormatting.RED + 1 + chatFormatting + " totem!");
77+
if(sendMsgs) MessageBus.sendClientPrefixMessage(chatFormatting + entityName + " popped " + ChatFormatting.GREEN + 1 + chatFormatting + " totem!");
7878
} else {
7979
int popCounter = playerPopCount.get(entityName) + 1;
8080

8181
playerPopCount.put(entityName, popCounter);
82-
if(sendMsgs) MessageBus.sendClientPrefixMessage(chatFormatting + entityName + " popped " + ChatFormatting.RED + popCounter + chatFormatting + " totems!");
82+
if(sendMsgs) MessageBus.sendClientPrefixMessage(chatFormatting + entityName + " popped " + ChatFormatting.GREEN + popCounter + chatFormatting + " totems!");
8383
}
8484
});
8585

@@ -90,4 +90,4 @@ public int getPlayerPopCount(String name) {
9090

9191
return 0;
9292
}
93-
}
93+
}

0 commit comments

Comments
 (0)