Frank Zago 14 年之前
父节点
当前提交
c481177515
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      server/CGameHandler.cpp

+ 1 - 1
server/CGameHandler.cpp

@@ -1655,7 +1655,7 @@ void CGameHandler::takeCreatures(int objid, const std::vector<CStackBasicDescrip
 				if(i->second->type == sbd.type)
 				{
 					TQuantity take = std::min(sbd.count - collected, i->second->count); //collect as much cres as we can
-					changeStackCount(StackLocation(obj, i->first), take, false);
+					changeStackCount(StackLocation(obj, i->first), -take, false);
 					collected += take;
 					break;
 				}