加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
PortingNotes_1.4.0.0.txt 668 Bytes
一键复制 编辑 原始数据 按行查看 历史
//From ItemSlot, move to Main.shopSellbackHelper
@@ -449,9 +450,13 @@
}
break;
case 3:
- Main.mouseItem.netDefaults(inv[slot].netID);
+ if (!PlayerHooks.CanBuyItem(player, Main.npc[player.talkNPC], inv, inv[slot]))
+ break;
+
+ Main.mouseItem = inv[slot].Clone();
+ Main.mouseItem.stack = 1;
if (inv[slot].buyOnce)
- Main.mouseItem.Prefix(inv[slot].prefix);
+ Main.mouseItem.value *= 5; // preserve item value for items sold to the shop
else
Main.mouseItem.Prefix(-1);
Main.mouseItem.position = player.Center - new Vector2(Main.mouseItem.width, Main.mouseItem.headSlot) / 2f;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化