This repository was archived by the owner on Nov 25, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/com/gamesense/client/manager/managers Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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+ }
You can’t perform that action at this time.
0 commit comments