diff options
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/CaveSpider.cpp (renamed from src/Mobs/NewCaveSpider.cpp) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Mobs/NewCaveSpider.cpp b/src/Mobs/CaveSpider.cpp index c3acb926b..09bb6c2f5 100644 --- a/src/Mobs/NewCaveSpider.cpp +++ b/src/Mobs/CaveSpider.cpp @@ -1,13 +1,13 @@ #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules -#include "NewCaveSpider.h" +#include "CaveSpider.h" #include "../World.h" -cNewCaveSpider::cNewCaveSpider(void) : +cCaveSpider::cCaveSpider(void) : super("CaveSpider", mtCaveSpider, "mob.spider.say", "mob.spider.death", 0.7, 0.5) { } @@ -16,7 +16,7 @@ cNewCaveSpider::cNewCaveSpider(void) : -void cNewCaveSpider::Tick(float a_Dt, cChunk & a_Chunk) +void cCaveSpider::Tick(float a_Dt, cChunk & a_Chunk) { super::Tick(a_Dt, a_Chunk); } @@ -25,7 +25,7 @@ void cNewCaveSpider::Tick(float a_Dt, cChunk & a_Chunk) -void cNewCaveSpider::GetDrops(cItems & a_Drops, cEntity * a_Killer) +void cCaveSpider::GetDrops(cItems & a_Drops, cEntity * a_Killer) { int LootingLevel = 0; if (a_Killer != NULL) |