Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
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.