Correct misspellings of "transparent"

This commit is contained in:
SoyChai
2018-04-28 11:21:13 +10:00
parent b43ebd82ea
commit b9f79e8a1c
2 changed files with 7 additions and 7 deletions

View File

@@ -34,7 +34,7 @@ public enum Varbits
/* /*
* If chatbox is transparent or not * If chatbox is transparent or not
*/ */
TRANSPARANT_CHATBOX(4608), TRANSPARENT_CHATBOX(4608),
/** /**
* Runecraft pouches * Runecraft pouches
@@ -337,7 +337,7 @@ public enum Varbits
GRAPES_4964(4964), GRAPES_4964(4964),
/** /**
* Automatically weed farming patches * Automatically weed farming patches
*/ */
AUTOWEED(5557); AUTOWEED(5557);

View File

@@ -56,7 +56,7 @@ public class ChatMessageManager
private final Map<ChatMessageType, Set<ChatColor>> colorCache = new HashMap<>(); private final Map<ChatMessageType, Set<ChatColor>> colorCache = new HashMap<>();
private final Provider<Client> clientProvider; private final Provider<Client> clientProvider;
private final ScheduledExecutorService executor; private final ScheduledExecutorService executor;
private int transparancyVarbit = -1; private int transparencyVarbit = -1;
private final Queue<QueuedMessage> queuedMessages = new ConcurrentLinkedQueue<>(); private final Queue<QueuedMessage> queuedMessages = new ConcurrentLinkedQueue<>();
@Inject @Inject
@@ -69,11 +69,11 @@ public class ChatMessageManager
@Subscribe @Subscribe
public void onVarbitChanged(VarbitChanged event) public void onVarbitChanged(VarbitChanged event)
{ {
int setting = clientProvider.get().getSetting(Varbits.TRANSPARANT_CHATBOX); int setting = clientProvider.get().getSetting(Varbits.TRANSPARENT_CHATBOX);
if (transparancyVarbit != setting) if (transparencyVarbit != setting)
{ {
transparancyVarbit = setting; transparencyVarbit = setting;
refreshAll(); refreshAll();
} }
} }
@@ -140,7 +140,7 @@ public class ChatMessageManager
} }
final Client client = clientProvider.get(); final Client client = clientProvider.get();
final boolean transparent = client.isResized() && client.getSetting(Varbits.TRANSPARANT_CHATBOX) != 0; final boolean transparent = client.isResized() && client.getSetting(Varbits.TRANSPARENT_CHATBOX) != 0;
final Set<ChatColor> chatColors = colorCache.get(target.getType()); final Set<ChatColor> chatColors = colorCache.get(target.getType());
// If we do not have any colors cached, simply set clean message // If we do not have any colors cached, simply set clean message