Fixes negated conditions

This commit is contained in:
Crazylemon64
2016-08-01 14:25:38 -07:00
parent 30a28f69fd
commit c48d216ebc
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -81,7 +81,7 @@ var/list/sounds_cache = list()
for(var/O in global_intercoms)
var/obj/item/device/radio/intercom/I = O
if(is_station_level(I.z) && !ignore_z)
if(!is_station_level(I.z) && !ignore_z)
continue
if(!I.on && !ignore_power)
continue