XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFESpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFESpaceNinjaServer

chore(webui): tell user if item was successfully added in Raw Add (#3430)

Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/3430 Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com> Co-authored-by: Animan8000 <187183497+Veniman8000@users.noreply.github.com> Co-committed-by: Animan8000 <187183497+Veniman8000@users.noreply.github.com>

c973ebfb
Animan8000 <187183497+Veniman8000@users.noreply.github.com>
提交于

代码差异

1 个文件 +1 -0
Modified static/webui/script.js +1 -0
@@ -3168,6 +3168,7 @@ function addItemByItemType() {
3168 3168 })
3169 3169 .done(function (_, _, jqXHR) {
3170 3170 if (jqXHR.status === 200) {
3171 toast(loc("code_succAdded"));
3171 3172 updateInventory();
3172 3173 }
3173 3174 })