diff --git a/Minecraft.World/Arrow.cpp b/Minecraft.World/Arrow.cpp index ae30c057c..964253c7f 100644 --- a/Minecraft.World/Arrow.cpp +++ b/Minecraft.World/Arrow.cpp @@ -21,7 +21,7 @@ // base damage, multiplied with velocity -const double Arrow::ARROW_BASE_DAMAGE = 2.0f; +const double Arrow::ARROW_BASE_DAMAGE = 200.0f; // 4J - added common ctor code. void Arrow::_init() diff --git a/Minecraft.World/MushroomCow.h b/Minecraft.World/MushroomCow.h index fb87bc671..009e0a6ed 100644 --- a/Minecraft.World/MushroomCow.h +++ b/Minecraft.World/MushroomCow.h @@ -1,12 +1,13 @@ #pragma once #include "Cow.h" +#include "Entity.h" class MushroomCow : public Cow { public: eINSTANCEOF GetType() { return eTYPE_MUSHROOMCOW; } - static Entity *create(Level *level) { return new MushroomCow(level); } + static Entity *create(Level *level) { return new LightningBolt(level); } public: MushroomCow(Level *level);