diff --git a/src/Mobs/SnowGolem.h b/src/Mobs/SnowGolem.h index 9c95e21c5..708ddbef9 100644 --- a/src/Mobs/SnowGolem.h +++ b/src/Mobs/SnowGolem.h @@ -1,22 +1,22 @@ #pragma once -#include "AggressiveMonster.h" +#include "PassiveAggressiveMonster.h" class cSnowGolem : - public cAggressiveMonster + public cPassiveAggressiveMonster { - typedef cAggressiveMonster super; - + typedef cPassiveAggressiveMonster super; + public: cSnowGolem(void); CLASS_PROTODEF(cSnowGolem) - + virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override; virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override; } ;