summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Monster.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-04-24 22:12:28 +0200
committerMattes D <github@xoft.cz>2014-04-24 22:12:28 +0200
commit85e0b0eae9a6b41fd349ba16534bcc985c9abdfa (patch)
tree287edd174804ca96887f7183ca14a31af5eeb92b /src/Mobs/Monster.cpp
parentChanged cByteBuffer constructor to take a size_t instead of int. (diff)
parentFixed class capitalization for the cave spider. (diff)
downloadcuberite-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 'src/Mobs/Monster.cpp')
-rw-r--r--src/Mobs/Monster.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mobs/Monster.cpp b/src/Mobs/Monster.cpp
index 248e88f5d..eb8480268 100644
--- a/src/Mobs/Monster.cpp
+++ b/src/Mobs/Monster.cpp
@@ -859,7 +859,7 @@ cMonster * cMonster::NewMonsterFromType(cMonster::eType a_MobType)
case mtBat: toReturn = new cBat(); break;
case mtBlaze: toReturn = new cBlaze(); break;
- case mtCaveSpider: toReturn = new cCavespider(); break;
+ case mtCaveSpider: toReturn = new cCaveSpider(); break;
case mtChicken: toReturn = new cChicken(); break;
case mtCow: toReturn = new cCow(); break;
case mtCreeper: toReturn = new cCreeper(); break;