安裝 Steam
登入
|
語言
簡體中文
日本語(日文)
한국어(韓文)
ไทย(泰文)
Български(保加利亞文)
Čeština(捷克文)
Dansk(丹麥文)
Deutsch(德文)
English(英文)
Español - España(西班牙文 - 西班牙)
Español - Latinoamérica(西班牙文 - 拉丁美洲)
Ελληνικά(希臘文)
Français(法文)
Italiano(義大利文)
Bahasa Indonesia(印尼語)
Magyar(匈牙利文)
Nederlands(荷蘭文)
Norsk(挪威文)
Polski(波蘭文)
Português(葡萄牙文 - 葡萄牙)
Português - Brasil(葡萄牙文 - 巴西)
Română(羅馬尼亞文)
Русский(俄文)
Suomi(芬蘭文)
Svenska(瑞典文)
Türkçe(土耳其文)
tiếng Việt(越南文)
Українська(烏克蘭文)
回報翻譯問題
im guessing its because empty slots weren't being recognised so any item in that slot on other pages would not get updated to being an empty slot, and just stay there since there was nothing to update to
control log: https://pastebin.com/3i62YZ3z
Also, along the same lines, would it be feasible to have sort buttons as well, either for sorting the page, or the entire inventory {or both, really}?
In any case, though, thanks for the mod - it's awesome.
Question, do difficulties like survival also affect this? Say if my character goes splat, everything from the infinite inventory also drops? I'd test this out but uhhhhh--Hardcore parkour rn.
I can't see any options for it, and holding shfit,ctrl or alt while acyivating the infinite storage tool does not change anything.
"regex":"\\d{0,999999}"
This regular expression will create a *huge* state table, as it essentially says "match all numbers from 0 to 999999 digits in length". This does NOT mean "match any number from 0 to 999999".
For each additional digit, another state entry is created during compilation, which will create a huge state table/tree in NFA-based regex implementations like the one in GCC's stdlibc++, which is used in Starbound on Linux.
No player will probably exceed 100000 pages of inventory, so changing the regex to
"regex":"\\d{1,6}"
would be totally sufficient, and not take ~1.5sec to compile & match if the implementation even allows it. This says "match any number from 1 to 6 digits in length", e.g. any number from "0" to "999999", which is probably what was intended in the first place.