VS: Ambig OoO

This commit is contained in:
Aronai Sieyes
2021-05-27 12:09:38 -04:00
parent 7d725e740b
commit 3ee63e782a
7 changed files with 11 additions and 11 deletions
+4 -4
View File
@@ -84,7 +84,7 @@
for(var/client/C in GLOB.admins)
if(R_ADMIN & C.holder.rights && R_BAN & C.holder.rights)
if(C.holder.fakekey && (!R_ADMIN & holder.rights && !R_MOD & holder.rights)) //Event Managerss can't see stealthmins
if(C.holder.fakekey && !((R_ADMIN & holder.rights) || (R_MOD & holder.rights))) //Event Managerss can't see stealthmins
continue
msg += "\t[C] is a [C.holder.rank]"
@@ -110,7 +110,7 @@
else if(R_ADMIN & C.holder.rights && !(R_SERVER & C.holder.rights))
modmsg += "\t[C] is a [C.holder.rank]"
if(C.holder.fakekey && (!R_ADMIN & holder.rights && !R_MOD & holder.rights))
if(C.holder.fakekey && !((R_ADMIN & holder.rights) || (R_MOD & holder.rights)))
continue
if(C.holder.fakekey)
msg += " <i>(as [C.holder.fakekey])</i>"
@@ -131,7 +131,7 @@
num_mods_online++
else if(R_SERVER & C.holder.rights)
if(C.holder.fakekey && (!R_ADMIN & holder.rights && !R_MOD & holder.rights))
if(C.holder.fakekey && !((R_ADMIN & holder.rights) || (R_MOD & holder.rights)))
continue
devmsg += "\t[C] is a [C.holder.rank]"
if(C.holder.fakekey)
@@ -152,7 +152,7 @@
num_devs_online++
else
if(C.holder.fakekey && (!R_ADMIN & holder.rights && !R_MOD & holder.rights))
if(C.holder.fakekey && !((R_ADMIN & holder.rights) || (R_MOD & holder.rights)))
continue
eventMmsg += "\t[C] is a [C.holder.rank]"
if(C.holder.fakekey)
+1 -1
View File
@@ -40,7 +40,7 @@
to_chat(user, "<span class='warning'>You can't fit anyone else into \the [src]!</span>")
else
var/obj/item/weapon/holder/micro/holder = I
if(holder.held_mob && holder.held_mob in holder)
if(holder.held_mob && (holder.held_mob in holder))
to_chat(holder.held_mob, "<span class='warning'>[user] stuffs you into \the [src]!</span>")
holder.held_mob.forceMove(src)
to_chat(user, "<span class='notice'>You stuff \the [holder.held_mob] into \the [src]!</span>")
+1 -1
View File
@@ -13,7 +13,7 @@
for(var/obj/machinery/atmospherics/unary/vent_pump/temp_vent in machines)
if(istype(get_area(temp_vent), /area/crew_quarters/sleep))
continue
if(!temp_vent.welded && temp_vent.network && temp_vent.loc.z in using_map.station_levels)
if(!temp_vent.welded && temp_vent.network && (temp_vent.loc.z in using_map.station_levels))
if(temp_vent.network.normal_members.len > 50)
vents += temp_vent
@@ -62,7 +62,7 @@
set name = "Notify Transcore"
set desc = "If your past-due backup notification was missed or ignored, you can use this to send a new one."
if(src.mind && src.mind.name in SStranscore.backed_up)
if(src.mind && (src.mind.name in SStranscore.backed_up))
var/datum/transhuman/mind_record/record = SStranscore.backed_up[src.mind.name]
if(!(record.dead_state == MR_DEAD))
to_chat(src, "<span class='warning'>Your backup is not past-due yet.</span>")