diff --git a/code/modules/events/ian_storm_vr.dm b/code/modules/events/ian_storm_vr.dm
index 0d9f67872e..4cf60640cb 100644
--- a/code/modules/events/ian_storm_vr.dm
+++ b/code/modules/events/ian_storm_vr.dm
@@ -16,6 +16,9 @@
continue
if(!(T.z in using_map.station_levels))
continue
+ var/area/A = get_area(T)
+ if(A.flags & RAD_SHIELDED || A.flags & BLUE_SHIELDED)
+ continue
place_ian(T)
/datum/event/ianstorm/proc/place_ian(var/turf/T)
diff --git a/code/modules/paperwork/faxmachine.dm b/code/modules/paperwork/faxmachine.dm
index 2d1e4dd130..780307f0db 100644
--- a/code/modules/paperwork/faxmachine.dm
+++ b/code/modules/paperwork/faxmachine.dm
@@ -353,7 +353,7 @@ var/list/adminfaxes = list() //cache for faxes that have been sent to admins
/obj/machinery/photocopier/faxmachine/proc/message_admins(var/mob/sender, var/faxname, var/obj/item/sent, var/reply_type, font_colour="#006100")
var/msg = "[faxname]: [get_options_bar(sender, 2,1,1)]"
msg += "(REPLY): "
- msg += "Receiving '[sent.name]' via secure connection ... view message"
+ msg += "Receiving '[sent.name]' via secure connection ... view message"
for(var/client/C in GLOB.admins)
if(check_rights((R_ADMIN|R_MOD|R_EVENT),0,C))