Fixed class capitalization for the cave spider.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
|
||||
cCavespider::cCavespider(void) :
|
||||
cCaveSpider::cCaveSpider(void) :
|
||||
super("CaveSpider", mtCaveSpider, "mob.spider.say", "mob.spider.death", 0.7, 0.5)
|
||||
{
|
||||
}
|
||||
@@ -16,7 +16,7 @@ cCavespider::cCavespider(void) :
|
||||
|
||||
|
||||
|
||||
void cCavespider::Tick(float a_Dt, cChunk & a_Chunk)
|
||||
void cCaveSpider::Tick(float a_Dt, cChunk & a_Chunk)
|
||||
{
|
||||
super::Tick(a_Dt, a_Chunk);
|
||||
|
||||
@@ -28,7 +28,7 @@ void cCavespider::Tick(float a_Dt, cChunk & a_Chunk)
|
||||
|
||||
|
||||
|
||||
void cCavespider::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
||||
void cCaveSpider::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
||||
{
|
||||
int LootingLevel = 0;
|
||||
if (a_Killer != NULL)
|
||||
|
||||
Reference in New Issue
Block a user