From 35a555fff44b6b3f0d9bb007481edeed3bc09c4e Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Sun, 1 Jul 2018 19:15:47 +1000 Subject: % More work on Villagers. % More work on Spawners. --- src/Java/gtPlusPlus/plugin/villagers/entity/EntityBaseVillager.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Java/gtPlusPlus/plugin/villagers/entity') diff --git a/src/Java/gtPlusPlus/plugin/villagers/entity/EntityBaseVillager.java b/src/Java/gtPlusPlus/plugin/villagers/entity/EntityBaseVillager.java index 429ca104ac..dc97aa4ce6 100644 --- a/src/Java/gtPlusPlus/plugin/villagers/entity/EntityBaseVillager.java +++ b/src/Java/gtPlusPlus/plugin/villagers/entity/EntityBaseVillager.java @@ -45,6 +45,10 @@ public class EntityBaseVillager extends EntityVillager { * extend EntityVillager and just implement IMerchant instead. */ + public EntityBaseVillager(World aWorld){ + this(aWorld, 0); + } + public EntityBaseVillager(World aWorld, int aID) { super(aWorld, aID); } -- cgit