From ea0e69e24e455a9ae827e269f22a6598ce635348 Mon Sep 17 00:00:00 2001 From: David Markowitz <39972741+EmosewaMC@users.noreply.github.com> Date: Fri, 14 Nov 2025 22:40:18 -0800 Subject: [PATCH] add return Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- dGame/Entity.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/dGame/Entity.cpp b/dGame/Entity.cpp index ff67b1dd..35e2cfdc 100644 --- a/dGame/Entity.cpp +++ b/dGame/Entity.cpp @@ -2360,4 +2360,5 @@ bool Entity::MsgPickupItem(GameMessages::GameMsg& msg) { bool Entity::MsgChildRemoved(GameMessages::GameMsg& msg) { GetScript()->OnChildRemoved(*this, static_cast(msg)); + return true; }