diff options
Diffstat (limited to 'src/Mobs')
-rw-r--r-- | src/Mobs/Bat.cpp | 2 | ||||
-rw-r--r-- | src/Mobs/Blaze.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/Mobs/Bat.cpp b/src/Mobs/Bat.cpp index c072d4f48..e187e928a 100644 --- a/src/Mobs/Bat.cpp +++ b/src/Mobs/Bat.cpp @@ -9,6 +9,8 @@ cBat::cBat(void) : super("Bat", mtBat, "mob.bat.hurt", "mob.bat.death", 0.5, 0.9) { + SetGravity(-2.0f); + SetAirDrag(0.05f); } diff --git a/src/Mobs/Blaze.cpp b/src/Mobs/Blaze.cpp index ed2a98201..d4ad24166 100644 --- a/src/Mobs/Blaze.cpp +++ b/src/Mobs/Blaze.cpp @@ -12,7 +12,7 @@ cBlaze::cBlaze(void) : super("Blaze", mtBlaze, "mob.blaze.hit", "mob.blaze.death", 0.6, 1.8) { SetGravity(-8.0f); - SetAirDrag(0.8f); + SetAirDrag(0.05f); } |