aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/plugin/villagers/entity
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2018-07-01 19:15:47 +1000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2018-07-01 19:15:47 +1000
commit35a555fff44b6b3f0d9bb007481edeed3bc09c4e (patch)
tree0762ca8b9e47b31d6185d18553e6c926397e7950 /src/Java/gtPlusPlus/plugin/villagers/entity
parent03e72a68aee10a871b3186d141b14c76770c72fb (diff)
downloadGT5-Unofficial-35a555fff44b6b3f0d9bb007481edeed3bc09c4e.tar.gz
GT5-Unofficial-35a555fff44b6b3f0d9bb007481edeed3bc09c4e.tar.bz2
GT5-Unofficial-35a555fff44b6b3f0d9bb007481edeed3bc09c4e.zip
% More work on Villagers.
% More work on Spawners.
Diffstat (limited to 'src/Java/gtPlusPlus/plugin/villagers/entity')
-rw-r--r--src/Java/gtPlusPlus/plugin/villagers/entity/EntityBaseVillager.java4
1 files changed, 4 insertions, 0 deletions
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);
}