Skip to content

Commit

Permalink
Fixup refactored Helper class references
Browse files Browse the repository at this point in the history
  • Loading branch information
Crudedragos committed Apr 10, 2013
1 parent 55ffb44 commit 5aecb81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jas/compatability/tf/BiomeInterpreterTwilightForest.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import jas.api.BiomeInterpreter;
import jas.common.JASLog;
import jas.common.spawner.biome.BiomeInterpreterHelper;
import jas.common.spawner.creature.handler.LivingRegsitryHelper;
import jas.common.spawner.creature.handler.ParsingHelper;
import jas.common.spawner.creature.handler.ReflectionHelper;

import java.util.ArrayList;
Expand Down Expand Up @@ -53,7 +53,7 @@ public Collection<SpawnListEntry> getStructureSpawnList(String structureKey) {

String[] keyParts = structureKey.split("_");
String featureName = keyParts[0];
int index = LivingRegsitryHelper.parseInteger(keyParts[1], -1, structureKey);
int index = ParsingHelper.parseInteger(keyParts[1], -1, structureKey);
TFFeature feature = TFFeature.featureList[featureNameToID.get(featureName)];
for (EnumCreatureType creatureType : EnumCreatureType.values()) {
collection.addAll(feature.getSpawnableList(creatureType, index));
Expand Down

0 comments on commit 5aecb81

Please sign in to comment.