diff options
Diffstat (limited to '')
-rw-r--r-- | src/BlockEntities/DropSpenserEntity.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/BlockEntities/DropSpenserEntity.cpp b/src/BlockEntities/DropSpenserEntity.cpp index 211bf8662..6a8b5311e 100644 --- a/src/BlockEntities/DropSpenserEntity.cpp +++ b/src/BlockEntities/DropSpenserEntity.cpp @@ -154,7 +154,7 @@ void cDropSpenserEntity::SendTo(cClientHandle & a_Client) -void cDropSpenserEntity::UsedBy(cPlayer * a_Player) +bool cDropSpenserEntity::UsedBy(cPlayer * a_Player) { cWindow * Window = GetWindow(); if (Window == nullptr) @@ -170,6 +170,7 @@ void cDropSpenserEntity::UsedBy(cPlayer * a_Player) a_Player->OpenWindow(Window); } } + return true; } |