From 667f9df42ce7cec8f88fa8b96f8a5250854e2e48 Mon Sep 17 00:00:00 2001 From: xdoxx123 Date: Sun, 15 Mar 2026 13:38:46 +0100 Subject: [PATCH] test --- Minecraft.World/Arrow.cpp | 2 +- Minecraft.World/MushroomCow.h | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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);