mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-11-27 21:29:14 +01:00
Reuse code
This commit is contained in:
parent
c5504379e4
commit
046ab7dd38
@ -92,13 +92,10 @@ public abstract class CitizensNPC extends AbstractNPC {
|
|||||||
// Spawn the NPC
|
// Spawn the NPC
|
||||||
Spawned spawned = getTrait(Spawned.class);
|
Spawned spawned = getTrait(Spawned.class);
|
||||||
CurrentLocation spawnLocation = getTrait(CurrentLocation.class);
|
CurrentLocation spawnLocation = getTrait(CurrentLocation.class);
|
||||||
try {
|
loadTrait(spawned, root.getRelative("traits.spawned"));
|
||||||
spawned.load(root.getRelative("traits.spawned"));
|
loadTrait(spawnLocation, root.getRelative("traits.location"));
|
||||||
spawnLocation.load(root.getRelative("traits.location"));
|
|
||||||
if (spawned.shouldSpawn() && spawnLocation.getLocation() != null)
|
if (spawned.shouldSpawn() && spawnLocation.getLocation() != null)
|
||||||
spawn(spawnLocation.getLocation());
|
spawn(spawnLocation.getLocation());
|
||||||
} catch (NPCLoadException e) {
|
|
||||||
}
|
|
||||||
|
|
||||||
metadata.loadFrom(root.getRelative("metadata"));
|
metadata.loadFrom(root.getRelative("metadata"));
|
||||||
// Load traits
|
// Load traits
|
||||||
@ -126,6 +123,13 @@ public abstract class CitizensNPC extends AbstractNPC {
|
|||||||
}
|
}
|
||||||
addTrait(trait);
|
addTrait(trait);
|
||||||
}
|
}
|
||||||
|
loadTrait(trait, traitKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
navigator.load(root.getRelative("navigator"));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void loadTrait(Trait trait, DataKey traitKey) {
|
||||||
try {
|
try {
|
||||||
trait.load(traitKey);
|
trait.load(traitKey);
|
||||||
PersistenceLoader.load(trait, traitKey);
|
PersistenceLoader.load(trait, traitKey);
|
||||||
@ -134,9 +138,6 @@ public abstract class CitizensNPC extends AbstractNPC {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
navigator.load(root.getRelative("navigator"));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void removeTrait(Class<? extends Trait> clazz) {
|
public void removeTrait(Class<? extends Trait> clazz) {
|
||||||
Trait present = traits.get(clazz);
|
Trait present = traits.get(clazz);
|
||||||
|
Loading…
Reference in New Issue
Block a user