From 9a0da2510f9eed57e4bc974084bf54832ee4c33c Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 8 Oct 2013 18:30:40 +0300 Subject: add support for sounds take and put. "take" played if take item from container like inventory "put" played if put item into container. --- src/dragdrop.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/dragdrop.h') diff --git a/src/dragdrop.h b/src/dragdrop.h index d282d82e3..72c39a766 100644 --- a/src/dragdrop.h +++ b/src/dragdrop.h @@ -22,6 +22,7 @@ #define DRAGDROP_H #include "item.h" +#include "itemsoundmanager.h" #include "textcommand.h" #include "gui/widgets/skilldata.h" @@ -103,6 +104,7 @@ class DragDrop final mItemImage->incRef(); mSource = source; mTag = tag; + ItemSoundManager::playSfx(item, SOUND_EVENT_TAKE); } else { @@ -180,6 +182,8 @@ class DragDrop final { if (mItemImage) mItemImage->decRef(); + if (mItem) + ItemSoundManager::playSfx(mItem, SOUND_EVENT_PUT); mItem = 0; mItemColor = 1; mItemImage = nullptr; -- cgit v1.2.3-60-g2f50