Renamed "a:inventory" to "a:item" in lookups

This commit is contained in:
Intelli 2022-02-10 19:21:30 -07:00
parent 971de8c078
commit 855a2e5ae2

View File

@ -960,13 +960,13 @@ public class LookupCommand {
phrase = Phrase.LOOKUP_ITEM; // {picked up|dropped} phrase = Phrase.LOOKUP_ITEM; // {picked up|dropped}
selector = (daction != 2 ? Selector.FIRST : Selector.SECOND); selector = (daction != 2 ? Selector.FIRST : Selector.SECOND);
tag = (daction != 2 ? Color.GREEN + "+" : Color.RED + "-"); tag = (daction != 2 ? Color.GREEN + "+" : Color.RED + "-");
action = "a:inventory"; action = "a:item";
} }
else if (daction == 4 || daction == 5) { else if (daction == 4 || daction == 5) {
phrase = Phrase.LOOKUP_STORAGE; // {deposited|withdrew} phrase = Phrase.LOOKUP_STORAGE; // {deposited|withdrew}
selector = (daction != 4 ? Selector.FIRST : Selector.SECOND); selector = (daction != 4 ? Selector.FIRST : Selector.SECOND);
tag = (daction != 4 ? Color.GREEN + "+" : Color.RED + "-"); tag = (daction != 4 ? Color.GREEN + "+" : Color.RED + "-");
action = "a:inventory"; action = "a:item";
} }
else { else {
phrase = Phrase.LOOKUP_CONTAINER; // {added|removed} phrase = Phrase.LOOKUP_CONTAINER; // {added|removed}