From 8e9d7bc307a26dbff6637f7d8a5ccce8386443e5 Mon Sep 17 00:00:00 2001 From: thatsIch Date: Sun, 21 Sep 2014 00:32:48 +0200 Subject: [PATCH] Typo badDimentions --- core/features/registries/WorldGenRegistry.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/features/registries/WorldGenRegistry.java b/core/features/registries/WorldGenRegistry.java index 1d664a602..53820a58b 100644 --- a/core/features/registries/WorldGenRegistry.java +++ b/core/features/registries/WorldGenRegistry.java @@ -13,7 +13,7 @@ public class WorldGenRegistry implements IWorldGen { HashSet> badProviders = new HashSet(); - HashSet badDimentions = new HashSet(); + HashSet badDimensions = new HashSet(); }; @@ -41,7 +41,7 @@ public class WorldGenRegistry implements IWorldGen if ( w == null ) throw new IllegalArgumentException( "Bad Provider Passed" ); - if ( types[type.ordinal()].badProviders.contains( w.provider.getClass() ) || types[type.ordinal()].badDimentions.contains( w.provider.dimensionId ) ) + if ( types[type.ordinal()].badProviders.contains( w.provider.getClass() ) || types[type.ordinal()].badDimensions.contains( w.provider.dimensionId ) ) return false; return true; @@ -65,7 +65,7 @@ public class WorldGenRegistry implements IWorldGen if ( type == null ) throw new IllegalArgumentException( "Bad Type Passed" ); - types[type.ordinal()].badDimentions.add( dimid ); + types[type.ordinal()].badDimensions.add( dimid ); } }