From b36c477460c19e9a4a34b743514beec6d4df0db3 Mon Sep 17 00:00:00 2001 From: Roxy <75404941+TealSeer@users.noreply.github.com> Date: Tue, 1 Apr 2025 18:35:54 -0400 Subject: [PATCH] Fix every fucking piece of maint loot being skub (#3412) ## About The Pull Request the override should append to the global maint loot list not replace it ## Why It's Good For The Game I'm anti-skub ## Proof Of Testing I did this PR from my phone in bed because there's no power --- modular_zubbers/code/modules/skub/skub.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modular_zubbers/code/modules/skub/skub.dm b/modular_zubbers/code/modules/skub/skub.dm index d5269df3db8..b55b4041327 100644 --- a/modular_zubbers/code/modules/skub/skub.dm +++ b/modular_zubbers/code/modules/skub/skub.dm @@ -1,6 +1,6 @@ /datum/holiday/april_fools/celebrate() . = ..() - GLOB.maintenance_loot = list( + GLOB.maintenance_loot += list( /obj/item/skub = maint_holiday_weight )