summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMat <mail@mathias.is>2020-04-08 15:43:24 +0200
committerTiger Wang <ziwei.tiger@outlook.com>2020-04-09 13:39:45 +0200
commit23219c4738c661049849971f8e59b2b8617c42df (patch)
treeeb9aa77cda928267f51ca7a8e5ad79470f3ed3c8
parentInitial resource pack support (#4622) (diff)
downloadcuberite-23219c4738c661049849971f8e59b2b8617c42df.tar
cuberite-23219c4738c661049849971f8e59b2b8617c42df.tar.gz
cuberite-23219c4738c661049849971f8e59b2b8617c42df.tar.bz2
cuberite-23219c4738c661049849971f8e59b2b8617c42df.tar.lz
cuberite-23219c4738c661049849971f8e59b2b8617c42df.tar.xz
cuberite-23219c4738c661049849971f8e59b2b8617c42df.tar.zst
cuberite-23219c4738c661049849971f8e59b2b8617c42df.zip
-rw-r--r--src/Mobs/Monster.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Mobs/Monster.cpp b/src/Mobs/Monster.cpp
index b56390b6f..5e3026a57 100644
--- a/src/Mobs/Monster.cpp
+++ b/src/Mobs/Monster.cpp
@@ -1060,7 +1060,7 @@ cMonster::eFamily cMonster::FamilyFromType(eMonsterType a_Type)
case mtHorse: return mfPassive;
case mtIronGolem: return mfPassive;
case mtMagmaCube: return mfHostile;
- case mtMooshroom: return mfHostile;
+ case mtMooshroom: return mfPassive;
case mtOcelot: return mfPassive;
case mtPig: return mfPassive;
case mtRabbit: return mfPassive;
@@ -1075,7 +1075,7 @@ cMonster::eFamily cMonster::FamilyFromType(eMonsterType a_Type)
case mtWitch: return mfHostile;
case mtWither: return mfNoSpawn;
case mtWitherSkeleton: return mfHostile;
- case mtWolf: return mfHostile;
+ case mtWolf: return mfPassive;
case mtZombie: return mfHostile;
case mtZombiePigman: return mfHostile;