remove static block initialization of superior list

This commit is contained in:
Davis Cook
2019-02-12 01:11:06 -05:00
parent 1cf7801045
commit 0baf0a8ecb
2 changed files with 34 additions and 29 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());
}
}
}