diff --git a/code/modules/projectiles/pins.dm b/code/modules/projectiles/pins.dm index 54f27ee9a83..fad66da4917 100644 --- a/code/modules/projectiles/pins.dm +++ b/code/modules/projectiles/pins.dm @@ -305,13 +305,13 @@ var/list/wireless_firing_pins = list() //A list of all initialized wireless firi var/obj/item/gun/energy/EG = gun if(EG.required_firemode_auth[EG.sel_mode] == WIRELESS_PIN_STUN) return TRUE - else if (GLOB.security_level == SEC_LEVEL_YELLOW || GLOB.security_level == SEC_LEVEL_RED) + else if (GLOB.security_level >= SEC_LEVEL_YELLOW) return TRUE else fail_message = SPAN_WARNING("Unable to fire: insufficient security level.") return FALSE else - if (GLOB.security_level == SEC_LEVEL_YELLOW || GLOB.security_level == SEC_LEVEL_RED) + if (GLOB.security_level >= SEC_LEVEL_YELLOW) return TRUE else fail_message = SPAN_WARNING("Unable to fire: insufficient security level.") diff --git a/html/changelogs/crosarius - blasterqol.yml b/html/changelogs/crosarius - blasterqol.yml new file mode 100644 index 00000000000..b1004c60d5c --- /dev/null +++ b/html/changelogs/crosarius - blasterqol.yml @@ -0,0 +1,4 @@ +author: crosarius +delete-after: True +changes: + - qol: "Changes the wireless firing pin (disruptor pistols) to be able to fire on lethal mode during code blue"