diff --git a/code/game/gamemodes/miniantags/guardian/types/bomb.dm b/code/game/gamemodes/miniantags/guardian/types/bomb.dm
index e877fea68af..6a4c74ff1a3 100644
--- a/code/game/gamemodes/miniantags/guardian/types/bomb.dm
+++ b/code/game/gamemodes/miniantags/guardian/types/bomb.dm
@@ -48,7 +48,7 @@
qdel(src)
/obj/item/weapon/guardian_bomb/proc/detonate(var/mob/living/user)
- to_chat(user, "The [src] was boobytrapped!")
+ to_chat(user, "The [src] was boobytrapped!")
if(istype(spawner, /mob/living/simple_animal/hostile/guardian))
var/mob/living/simple_animal/hostile/guardian/G = spawner
if(user == G.summoner)
@@ -72,5 +72,5 @@
/obj/item/weapon/guardian_bomb/examine(mob/user)
stored_obj.examine(user)
- if(get_dist(user,src)<=2)
+ if(get_dist(user,src) <= 2)
to_chat(user, "Looks odd!")
diff --git a/code/game/gamemodes/miniantags/guardian/types/fire.dm b/code/game/gamemodes/miniantags/guardian/types/fire.dm
index 0e17e0003c2..1447f36e739 100644
--- a/code/game/gamemodes/miniantags/guardian/types/fire.dm
+++ b/code/game/gamemodes/miniantags/guardian/types/fire.dm
@@ -25,7 +25,7 @@
to_chat(src, "You switch to dispersion mode, and will teleport victims away from your master.")
toggle = FALSE
else
- to_chat(src, "You switch to deception mode, and will turn your victims against their allies.")
+ to_chat(src, "You switch to deception mode, and will turn your victims against their allies.")
toggle = TRUE
/mob/living/simple_animal/hostile/guardian/fire/AttackingTarget()
@@ -33,7 +33,7 @@
if(toggle)
if(ishuman(target) && !summoner)
spawn(0)
- new /obj/effect/hallucination/delusion(target.loc, target, force_kind="custom", duration=200, skip_nearby=0, custom_icon = icon_state, custom_icon_file = icon)
+ new /obj/effect/hallucination/delusion(target.loc, target, force_kind = "custom", duration = 200, skip_nearby = 0, custom_icon = icon_state, custom_icon_file = icon)
else
if(prob(45))
if(ismovableatom(target))