summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-05-31 00:27:24 +0200
committerHowaner <franzi.moos@googlemail.com>2014-05-31 00:27:24 +0200
commit2030800ad78678b783224010e22382d413863975 (patch)
tree3b0f11d1888d65ce7c2710904ce9ff9836dccd8e
parentFix DBL bug. (diff)
downloadcuberite-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
-rw-r--r--src/UI/SlotArea.cpp2
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;
}