Mappings Update

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2019-03-17 11:48:53 +11:00
parent c232318c9f
commit dcc541a4a0
4 changed files with 8 additions and 34 deletions

View File

@@ -21,9 +21,9 @@ public class GameRuleTest {
@Test
public void testMinecraftRules() {
TreeMap<String, GameRules.b> minecraftRules = GameRules.getGameRules();
TreeMap<String, GameRules.GameRuleDefinition> minecraftRules = GameRules.getGameRules();
for (Map.Entry<String, GameRules.b> entry : minecraftRules.entrySet()) {
for (Map.Entry<String, GameRules.GameRuleDefinition> entry : minecraftRules.entrySet()) {
GameRule<?> bukkitRule = GameRule.getByName(entry.getKey());
Assert.assertNotNull(bukkitRule);