From b4dbe2b0eefec669fb2e071d0ee65420158a5ace Mon Sep 17 00:00:00 2001 From: xdoxx123 Date: Sun, 15 Mar 2026 13:46:45 +0100 Subject: [PATCH] w --- Minecraft.World/MushroomCow.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Minecraft.World/MushroomCow.h b/Minecraft.World/MushroomCow.h index 009e0a6ed..fb87bc671 100644 --- a/Minecraft.World/MushroomCow.h +++ b/Minecraft.World/MushroomCow.h @@ -1,13 +1,12 @@ #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 LightningBolt(level); } + static Entity *create(Level *level) { return new MushroomCow(level); } public: MushroomCow(Level *level);