From 92ad8634ac5f1adb5f7f1aea5a6b2fefde2964f7 Mon Sep 17 00:00:00 2001 From: Ren Erthilo Date: Fri, 27 Apr 2012 20:03:08 +0100 Subject: [PATCH] Fix for SUPER/MRSPACMAN not accepting sheets. Credit: refrigeron --- code/modules/power/port_gen.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/power/port_gen.dm b/code/modules/power/port_gen.dm index b99b8c708d2..17c0d52e850 100644 --- a/code/modules/power/port_gen.dm +++ b/code/modules/power/port_gen.dm @@ -297,7 +297,7 @@ display round(lastgen) and plasmatank amount /obj/machinery/power/port_gen/pacman/super name = "S.U.P.E.R.P.A.C.M.A.N.-type Portable Generator" icon_state = "portgen1" - sheet_path = "/obj/item/stack/sheet/uranium" + sheet_path = /obj/item/stack/sheet/uranium power_gen = 15000 time_per_sheet = 25 board_path = "/obj/item/weapon/circuitboard/pacman/super" @@ -307,7 +307,7 @@ display round(lastgen) and plasmatank amount /obj/machinery/power/port_gen/pacman/mrs name = "M.R.S.P.A.C.M.A.N.-type Portable Generator" icon_state = "portgen2" - sheet_path = "/obj/item/stack/sheet/diamond" + sheet_path = /obj/item/stack/sheet/diamond power_gen = 40000 time_per_sheet = 30 board_path = "/obj/item/weapon/circuitboard/pacman/mrs"