Fix compilation, for real this time.

I should go to sleep now...
This commit is contained in:
Alexander Harkness
2020-04-10 01:01:07 +01:00
parent a780b3a4f5
commit 4b3043f627
5 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -1226,7 +1226,7 @@ std::unique_ptr<cMonster> cMonster::NewMonsterFromType(eMonsterType a_MobType)
case mtWither: return cpp14::make_unique<cWither>();
case mtWitherSkeleton: return cpp14::make_unique<cWitherSkeleton>();
case mtWolf: return cpp14::make_unique<cWolf>();
case mtZombie: return cpp14::make_unique<cZombie>(false); // TODO: Infected zombie parameter
case mtZombie: return cpp14::make_unique<cZombie>();
case mtZombiePigman: return cpp14::make_unique<cZombiePigman>();
default:
{