something

This commit is contained in:
aPunch 2012-01-19 06:21:04 -06:00
parent 0ab09378b8
commit d7a5ce293f

View File

@ -83,8 +83,8 @@ public class Citizens extends JavaPlugin {
if (character != null) { if (character != null) {
character.load(key); character.load(key);
} }
for (Trait t : npc.getTraits()) { for (Trait trait : npc.getTraits()) {
t.load(key); trait.load(key);
} }
npc.spawn(npc.getTrait(LocationTrait.class).getLocation()); npc.spawn(npc.getTrait(LocationTrait.class).getLocation());
} }