From f3632fbf03c35fe5e8c3efb72d2eef44286129e4 Mon Sep 17 00:00:00 2001 From: 81Denton <32391752+81Denton@users.noreply.github.com> Date: Thu, 8 Feb 2018 16:01:31 +0100 Subject: [PATCH] revert due to CONTRIBUTING.MD --- code/game/objects/effects/effect_system/effects_foam.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/objects/effects/effect_system/effects_foam.dm b/code/game/objects/effects/effect_system/effects_foam.dm index a73669de4b0..5cb1af53890 100644 --- a/code/game/objects/effects/effect_system/effects_foam.dm +++ b/code/game/objects/effects/effect_system/effects_foam.dm @@ -1,6 +1,6 @@ // Foam // Similar to smoke, but slower and mobs absorb its reagent through their exposed skin. -#define ALUMINIUM_FOAM 1 +#define ALUMINUM_FOAM 1 #define IRON_FOAM 2 #define RESIN_FOAM 3 @@ -71,7 +71,7 @@ /obj/effect/particle_effect/foam/metal name = "aluminium foam" - metal = ALUMINIUM_FOAM + metal = ALUMINUM_FOAM icon_state = "mfoam" /obj/effect/particle_effect/foam/metal/MakeSlippery() @@ -109,7 +109,7 @@ /obj/effect/particle_effect/foam/proc/kill_foam() STOP_PROCESSING(SSfastprocess, src) switch(metal) - if(ALUMINIUM_FOAM) + if(ALUMINUM_FOAM) new /obj/structure/foamedmetal(get_turf(src)) if(IRON_FOAM) new /obj/structure/foamedmetal/iron(get_turf(src)) @@ -345,6 +345,6 @@ return TRUE . = ..() -#undef ALUMINIUM_FOAM +#undef ALUMINUM_FOAM #undef IRON_FOAM #undef RESIN_FOAM