浏览代码

another fix for #855

tags/v0.3.0
Big Bad Waffle 5 年前
父节点
当前提交
c8cf800b0d
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. +4
    -4
      src/server/components/inventory.js

+ 4
- 4
src/server/components/inventory.js 查看文件

@@ -249,13 +249,13 @@ module.exports = {
id: this.obj.id,
messages: [{
class: 'color-redA',
message: 'your bags are too full to split that stack',
message: 'Your bags are too full to split that stack',
type: 'info'
}]
}, [this.obj.serverId]);
}

return;
return;
}

let newItem = extend({}, item);
item.quantity -= msg.stackSize;
@@ -760,7 +760,7 @@ module.exports = {
id: this.obj.id,
messages: [{
class: 'color-redA',
message: 'your bags are too full to loot any more items',
message: 'Your bags are too full to loot any more items',
type: 'info'
}]
}, [this.obj.serverId]);


正在加载...
取消
保存