安裝 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(越南文)
Українська(烏克蘭文)
回報翻譯問題
Edit: New bug (I think), the peng-quins have a weird offset so that they're easily an entire tile to the right of where they actually are, thus allowing you to just stick them inside of walls.
As for the pengquins, the sprites have a massive amount of unnecessary empty space, which more than likely explains the offset. From there I assume you'd have to just mess around with the mannequin code to make it put the armor in the right spot.
Going by hand, I think [16,15] would work for the mouth offset, but I never modded races, and am like an entire year rusty on my json.
Fix: Replace path in that file from "pp/penguinDescription" to "/pppenguinDescription".
2) Caused by this mod incorrectly presuming a JSON node will always be present: [Error] Could not apply patch from file /npcs/outpost/outpostpenguinscientist.npctype.patch in source: ..\mods\PenguinPiracyReborn. Caused by: (JsonPatchException) Could not apply patch to base. (JsonPatchException) Could not apply operation to base. (TraversalException) Could not find "chatSounds" to remove
Fix: Change the .patch to use multiple sequences, with a "test" op to check for the content to remove before removing it. This involves surrounding the whole file in another set of [ ] brackets and then adding a new bracketed sequence of operations. E.g., [ [ {testop}, {removeop} ], [ {replaceop}, {addop} ] ]. Although since this edit is only to justify why Dr. Akaggi is yellow, personally I'd just sooner remove any and all unrealistic feather-colour overrides of the original penguin race, since it never made sense why the original PP did that anyway.
3) [Error] Could not apply patch from file /vehicles/modularmech/modularmech.vehicle.patch in source: ..\mods\PenguinPiracyReborn. Caused by: (JsonPatchException) Could not apply patch to base. (JsonPatchException) Could not apply operation to base. (TraversalException) Could not find "armorCosmeticOverrides" to remove
Fix: Similar to #2. Split file into two separate patch operation sequences, move the removal op to a new sequence, and test before applying removal op.