From 679070e7bbd171aa48e8cc7e860a2ed7cd592b72 Mon Sep 17 00:00:00 2001 From: CekisSWG Date: Mon, 26 Oct 2020 02:39:23 -0400 Subject: [PATCH] Fixed PSGs in factory crate missing stats (credit: Iosnowore) --- .../game/script/systems/crafting/armor/crafting_base_psg.java | 1 + 1 file changed, 1 insertion(+) diff --git a/sku.0/sys.server/compiled/game/script/systems/crafting/armor/crafting_base_psg.java b/sku.0/sys.server/compiled/game/script/systems/crafting/armor/crafting_base_psg.java index 10e39c098..5d252c8f0 100755 --- a/sku.0/sys.server/compiled/game/script/systems/crafting/armor/crafting_base_psg.java +++ b/sku.0/sys.server/compiled/game/script/systems/crafting/armor/crafting_base_psg.java @@ -66,6 +66,7 @@ public class crafting_base_psg extends script.systems.crafting.crafting_base } public int OnManufactureObject(obj_id self, obj_id player, obj_id newObject, draft_schematic schematic, boolean isPrototype, boolean isRealObject) throws InterruptedException { + super.OnManufactureObject(self, player, newObject, schematic, isPrototype, isRealObject); messageTo(newObject, "handleInitializePsg", null, 0.5f, false); return SCRIPT_CONTINUE; }