summaryrefslogtreecommitdiffstats
path: root/source/Mobs
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2013-10-30 23:25:51 +0100
committerMattes D <github@xoft.cz>2013-10-30 23:25:51 +0100
commit8b9d3c77228b139d5b5a146e0f1aa242e3066903 (patch)
tree6733363192eb368c335e9aa18fd0df2ab4a266b7 /source/Mobs
parentAdded 1.7 to protocol recognizer. (diff)
parentLast of the nitpicker note fixes. Added some inline commenting. (diff)
downloadcuberite-8b9d3c77228b139d5b5a146e0f1aa242e3066903.tar
cuberite-8b9d3c77228b139d5b5a146e0f1aa242e3066903.tar.gz
cuberite-8b9d3c77228b139d5b5a146e0f1aa242e3066903.tar.bz2
cuberite-8b9d3c77228b139d5b5a146e0f1aa242e3066903.tar.lz
cuberite-8b9d3c77228b139d5b5a146e0f1aa242e3066903.tar.xz
cuberite-8b9d3c77228b139d5b5a146e0f1aa242e3066903.tar.zst
cuberite-8b9d3c77228b139d5b5a146e0f1aa242e3066903.zip
Diffstat (limited to 'source/Mobs')
-rw-r--r--source/Mobs/Monster.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/Mobs/Monster.cpp b/source/Mobs/Monster.cpp
index 9b1f2fc4c..72dfb2583 100644
--- a/source/Mobs/Monster.cpp
+++ b/source/Mobs/Monster.cpp
@@ -609,9 +609,9 @@ int cMonster::GetSpawnDelay(cMonster::eFamily a_MobFamily)
{
switch (a_MobFamily)
{
- case mfHostile: return 1;
- case mfPassive: return 400;
- case mfAmbient: return 400;
+ case mfHostile: return 40;
+ case mfPassive: return 40;
+ case mfAmbient: return 40;
case mfWater: return 400;
}
ASSERT(!"Unhandled mob family");