Instal Steam
login
|
bahasa
简体中文 (Tionghoa Sederhana)
繁體中文 (Tionghoa Tradisional)
日本語 (Bahasa Jepang)
한국어 (Bahasa Korea)
ไทย (Bahasa Thai)
Български (Bahasa Bulgaria)
Čeština (Bahasa Ceko)
Dansk (Bahasa Denmark)
Deutsch (Bahasa Jerman)
English (Bahasa Inggris)
Español - España (Bahasa Spanyol - Spanyol)
Español - Latinoamérica (Bahasa Spanyol - Amerika Latin)
Ελληνικά (Bahasa Yunani)
Français (Bahasa Prancis)
Italiano (Bahasa Italia)
Magyar (Bahasa Hungaria)
Nederlands (Bahasa Belanda)
Norsk (Bahasa Norwegia)
Polski (Bahasa Polandia)
Português (Portugis - Portugal)
Português-Brasil (Bahasa Portugis-Brasil)
Română (Bahasa Rumania)
Русский (Bahasa Rusia)
Suomi (Bahasa Finlandia)
Svenska (Bahasa Swedia)
Türkçe (Bahasa Turki)
Tiếng Việt (Bahasa Vietnam)
Українська (Bahasa Ukraina)
Laporkan kesalahan penerjemahan
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.