diff --git a/code/modules/research/server.dm b/code/modules/research/server.dm index d712db9a47..b0fc0d8c9f 100644 --- a/code/modules/research/server.dm +++ b/code/modules/research/server.dm @@ -167,4 +167,4 @@ return playsound(src, "sparks", 75, 1) obj_flags |= EMAGGED - to_chat(user, "You you disable the security protocols.") + to_chat(user, "You disable the security protocols.") diff --git a/code/modules/station_goals/shield.dm b/code/modules/station_goals/shield.dm index c9acfebb9c..f67f370636 100644 --- a/code/modules/station_goals/shield.dm +++ b/code/modules/station_goals/shield.dm @@ -170,9 +170,10 @@ if(active && (obj_flags & EMAGGED)) change_meteor_chance(0.5) -/obj/machinery/satellite/meteor_shield/emag_act() +/obj/machinery/satellite/meteor_shield/emag_act(mob/user) if(obj_flags & EMAGGED) return obj_flags |= EMAGGED + to_chat(user, "You scramble the satellite's controller, increasing the chance of meteor strikes.") if(active) change_meteor_chance(2)