From 54da739c1da9421e3d980c9851d4515bb4fd160c Mon Sep 17 00:00:00 2001 From: Intelli Date: Thu, 10 Feb 2022 19:36:23 -0700 Subject: [PATCH] Inverted action tags for deposits/withdraws --- src/main/java/net/coreprotect/command/LookupCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/net/coreprotect/command/LookupCommand.java b/src/main/java/net/coreprotect/command/LookupCommand.java index 860cb91..21b6ed3 100755 --- a/src/main/java/net/coreprotect/command/LookupCommand.java +++ b/src/main/java/net/coreprotect/command/LookupCommand.java @@ -965,7 +965,7 @@ public class LookupCommand { else if (daction == 4 || daction == 5) { phrase = Phrase.LOOKUP_STORAGE; // {deposited|withdrew} selector = (daction != 4 ? Selector.FIRST : Selector.SECOND); - tag = (daction != 4 ? Color.GREEN + "+" : Color.RED + "-"); + tag = (daction != 4 ? Color.RED + "-" : Color.GREEN + "+"); action = "a:item"; } else {