diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-05-31 00:27:24 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-05-31 00:27:24 +0200 |
commit | 2030800ad78678b783224010e22382d413863975 (patch) | |
tree | 3b0f11d1888d65ce7c2710904ce9ff9836dccd8e /src | |
parent | Fix DBL bug. (diff) | |
download | cuberite-2030800ad78678b783224010e22382d413863975.tar cuberite-2030800ad78678b783224010e22382d413863975.tar.gz cuberite-2030800ad78678b783224010e22382d413863975.tar.bz2 cuberite-2030800ad78678b783224010e22382d413863975.tar.lz cuberite-2030800ad78678b783224010e22382d413863975.tar.xz cuberite-2030800ad78678b783224010e22382d413863975.tar.zst cuberite-2030800ad78678b783224010e22382d413863975.zip |
Diffstat (limited to '')
-rw-r--r-- | src/UI/SlotArea.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/UI/SlotArea.cpp b/src/UI/SlotArea.cpp index 7c79e290a..b3e126247 100644 --- a/src/UI/SlotArea.cpp +++ b/src/UI/SlotArea.cpp @@ -1441,7 +1441,7 @@ void cSlotAreaFurnace::Clicked(cPlayer & a_Player, int a_SlotNum, eClickAction a } case caLeftClick: { - DraggingItem = cItem(Slot); + DraggingItem = Slot; Slot.Empty(); break; } |