diff options
author | Mattes D <github@xoft.cz> | 2014-04-24 22:12:28 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-04-24 22:12:28 +0200 |
commit | 85e0b0eae9a6b41fd349ba16534bcc985c9abdfa (patch) | |
tree | 287edd174804ca96887f7183ca14a31af5eeb92b /src/Mobs/CaveSpider.cpp | |
parent | Changed cByteBuffer constructor to take a size_t instead of int. (diff) | |
parent | Fixed class capitalization for the cave spider. (diff) | |
download | cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.gz cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.bz2 cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.lz cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.xz cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.zst cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/CaveSpider.cpp (renamed from src/Mobs/Cavespider.cpp) | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/Mobs/Cavespider.cpp b/src/Mobs/CaveSpider.cpp index 94e93283d..56ecd2d28 100644 --- a/src/Mobs/Cavespider.cpp +++ b/src/Mobs/CaveSpider.cpp @@ -1,15 +1,14 @@ - #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules -#include "Cavespider.h" +#include "CaveSpider.h" #include "../World.h" -cCavespider::cCavespider(void) : - super("Cavespider", mtCaveSpider, "mob.spider.say", "mob.spider.death", 0.7, 0.5) +cCaveSpider::cCaveSpider(void) : + super("CaveSpider", mtCaveSpider, "mob.spider.say", "mob.spider.death", 0.7, 0.5) { } @@ -17,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); @@ -29,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) |