From c5f512910ff94b5fb9c5a287640157d808b0f912 Mon Sep 17 00:00:00 2001 From: Shirbu Date: Thu, 8 Feb 2018 00:00:56 -0800 Subject: [PATCH] Fixes crushed sodacans not giving aluminium This is my first PR, so, might not really work, but I checked the reagents code, and I'm pretty sure its aluminium, not aluminum in the code. Hopefully this will finally work, and we can begin to revive ghetto chemistry. --- code/game/objects/items/trash.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/trash.dm b/code/game/objects/items/trash.dm index 9e5edcacbbc..539a60986aa 100644 --- a/code/game/objects/items/trash.dm +++ b/code/game/objects/items/trash.dm @@ -66,7 +66,7 @@ name = "crushed can" icon_state = "cola" resistance_flags = NONE - grind_results = list("aluminum" = 10) + grind_results = list("aluminium" = 10) /obj/item/trash/attack(mob/M, mob/living/user) return @@ -81,4 +81,4 @@ /obj/item/trash/coal/burn() visible_message("[src] fuses into a diamond! Someone wasn't so naughty after all...") new /obj/item/stack/ore/diamond(loc) - qdel(src) \ No newline at end of file + qdel(src)