diff options
Diffstat (limited to 'source/UI/Window.cpp')
-rw-r--r-- | source/UI/Window.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/UI/Window.cpp b/source/UI/Window.cpp index 661f9f62f..f353d0721 100644 --- a/source/UI/Window.cpp +++ b/source/UI/Window.cpp @@ -251,7 +251,7 @@ void cWindow::OpenedByPlayer(cPlayer & a_Player) -void cWindow::ClosedByPlayer(cPlayer & a_Player) +bool cWindow::ClosedByPlayer(cPlayer & a_Player) { // Checks whether the player is still holding an item if (a_Player.IsDraggingItem()) @@ -285,6 +285,8 @@ void cWindow::ClosedByPlayer(cPlayer & a_Player) { delete this; } + + return true; } |