From 42979ee77121a3ef3cbc385f053ba85f077721e2 Mon Sep 17 00:00:00 2001
From: 81Denton <32391752+81Denton@users.noreply.github.com>
Date: Fri, 16 Feb 2018 07:38:49 +0100
Subject: [PATCH] dr. satellite I'm EMAG (#35662)
---
code/modules/research/server.dm | 2 +-
code/modules/station_goals/shield.dm | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
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)