diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-10-11 01:41:54 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-10-11 01:41:54 +0200 |
commit | d7b2c534fd2e272c328b176432c922fd11a7cd85 (patch) | |
tree | 8431feefc1a28a05c18eb01c06a22550b7f34d77 /source/Mobs | |
parent | Second round of fixes (diff) | |
download | cuberite-d7b2c534fd2e272c328b176432c922fd11a7cd85.tar cuberite-d7b2c534fd2e272c328b176432c922fd11a7cd85.tar.gz cuberite-d7b2c534fd2e272c328b176432c922fd11a7cd85.tar.bz2 cuberite-d7b2c534fd2e272c328b176432c922fd11a7cd85.tar.lz cuberite-d7b2c534fd2e272c328b176432c922fd11a7cd85.tar.xz cuberite-d7b2c534fd2e272c328b176432c922fd11a7cd85.tar.zst cuberite-d7b2c534fd2e272c328b176432c922fd11a7cd85.zip |
Diffstat (limited to 'source/Mobs')
-rw-r--r-- | source/Mobs/Bat.h | 3 | ||||
-rw-r--r-- | source/Mobs/Cavespider.cpp | 3 | ||||
-rw-r--r-- | source/Mobs/Enderman.cpp | 3 | ||||
-rw-r--r-- | source/Mobs/Ocelot.h | 3 | ||||
-rw-r--r-- | source/Mobs/Silverfish.h | 3 |
5 files changed, 5 insertions, 10 deletions
diff --git a/source/Mobs/Bat.h b/source/Mobs/Bat.h index 7aaec361b..0b50e06cd 100644 --- a/source/Mobs/Bat.h +++ b/source/Mobs/Bat.h @@ -14,8 +14,7 @@ class cBat : public: cBat(void) : - // TODO: The size is only a guesstimate, measure in vanilla and fix the size values here - super("Bat", 65, "mob.bat.hurt", "mob.bat.death", 0.7, 0.7) + super("Bat", 65, "mob.bat.hurt", "mob.bat.death", 0.5, 0.9) { } diff --git a/source/Mobs/Cavespider.cpp b/source/Mobs/Cavespider.cpp index 569aadcc4..2d50b391a 100644 --- a/source/Mobs/Cavespider.cpp +++ b/source/Mobs/Cavespider.cpp @@ -9,8 +9,7 @@ cCavespider::cCavespider(void) : - // TODO: The size is only a guesstimate, measure in vanilla and fix the size values here - super("Cavespider", 59, "mob.spider.say", "mob.spider.death", 0.9, 0.6) + super("Cavespider", 59, "mob.spider.say", "mob.spider.death", 0.7, 0.5) { } diff --git a/source/Mobs/Enderman.cpp b/source/Mobs/Enderman.cpp index 04c1a60e1..c0ea3d6aa 100644 --- a/source/Mobs/Enderman.cpp +++ b/source/Mobs/Enderman.cpp @@ -8,8 +8,7 @@ cEnderman::cEnderman(void) : - // TODO: The size is only a guesstimate, measure in vanilla and fix the size values here - super("Enderman", 58, "mob.endermen.hit", "mob.endermen.death", 0.5, 2.5), + super("Enderman", 58, "mob.endermen.hit", "mob.endermen.death", 0.5, 2.9), m_bIsScreaming(false), CarriedBlock(E_BLOCK_AIR), CarriedMeta(0) diff --git a/source/Mobs/Ocelot.h b/source/Mobs/Ocelot.h index 98ea224e2..6d24c5672 100644 --- a/source/Mobs/Ocelot.h +++ b/source/Mobs/Ocelot.h @@ -14,8 +14,7 @@ class cOcelot : public: cOcelot(void) : - // TODO: The size is only a guesstimate, measure in vanilla and fix the size values here - super("Ocelot", 98, "mob.cat.hitt", "mob.cat.hitt", 0.9, 0.5) + super("Ocelot", 98, "mob.cat.hitt", "mob.cat.hitt", 0.6, 0.8) { } diff --git a/source/Mobs/Silverfish.h b/source/Mobs/Silverfish.h index 7d675a9c0..d632ac169 100644 --- a/source/Mobs/Silverfish.h +++ b/source/Mobs/Silverfish.h @@ -14,8 +14,7 @@ class cSilverfish : public: cSilverfish(void) : - // TODO: The size is only a guesstimate, measure in vanilla and fix the size values here - super("Silverfish", 60, "mob.silverfish.hit", "mob.silverfish.kill", 0.9, 0.3) + super("Silverfish", 60, "mob.silverfish.hit", "mob.silverfish.kill", 0.3, 0.7) { } |