From a6699a2e6f98c486a63c59c164ea2ee797c44d29 Mon Sep 17 00:00:00 2001 From: FriedMonkey <120042050+Friedmonkey@users.noreply.github.com> Date: Sat, 7 Mar 2026 01:45:22 +0100 Subject: Fixed baby zombie hitbox size (#765) * Added scaling to zombie i added scaling to zombie based on if its a baby or not just setting the size does not work you have to set it in the tick (look at the tick for slimes which is a scalable monster) * add output dir to gitignore the build output folder is now added to the git ignore --------- Co-authored-by: Loki --- Minecraft.World/Zombie.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Minecraft.World/Zombie.h') diff --git a/Minecraft.World/Zombie.h b/Minecraft.World/Zombie.h index d79df182..f788ea63 100644 --- a/Minecraft.World/Zombie.h +++ b/Minecraft.World/Zombie.h @@ -60,6 +60,7 @@ public: virtual bool hurt(DamageSource *source, float dmg); virtual void tick(); virtual bool doHurtTarget(shared_ptr target); + virtual void updateSize(bool isBaby); protected: virtual int getAmbientSound(); -- cgit v1.2.3