Merge pull request #89 from daviscook477/slayer-highlight-superiors

Slayer highlight superiors
This commit is contained in:
Ganom
2019-04-24 20:41:47 -04:00
committed by GitHub
4 changed files with 60 additions and 1 deletions

View File

@@ -561,4 +561,13 @@ public class SlayerPluginTest
verify(chatMessageManager, never()).update(any(MessageNode.class));
}
@Test
public void testSuperiorsLowercase()
{
for (String name : SlayerPlugin.SUPERIOR_SLAYER_MONSTERS)
{
assertEquals(name, name.toLowerCase());
}
}
}