diff --git a/code/modules/power/singularity/emitter.dm b/code/modules/power/singularity/emitter.dm index 51c95ff2f42..e96e564b758 100644 --- a/code/modules/power/singularity/emitter.dm +++ b/code/modules/power/singularity/emitter.dm @@ -109,6 +109,10 @@ max(astype(user.GetComponent(REACTOR_SYSTEMS_SKILL_COMPONENT), SKILL_COMPONENT)?.skill_level, \ astype(user.GetComponent(ELECTRICAL_ENGINEERING_SKILL_COMPONENT), SKILL_COMPONENT)?.skill_level) + if(issilicon(user)) + activate(user) + return TRUE + if(max_engineering_skill <= SKILL_LEVEL_TRAINED) to_chat(user, SPAN_WARNING("You try to find the switch on \the [src]... How do you even turn this thing on?")) if(!do_after(user, 3 SECONDS + 1.5 SECONDS * (SKILL_LEVEL_TRAINED - max_engineering_skill))) diff --git a/html/changelogs/Bat-BorgEmitters.yml b/html/changelogs/Bat-BorgEmitters.yml new file mode 100644 index 00000000000..c98b33163b1 --- /dev/null +++ b/html/changelogs/Bat-BorgEmitters.yml @@ -0,0 +1,4 @@ +author: Batrachophrenoboocosmomachia +delete-after: True +changes: + - bugfix: "Allows borgs to bypass skill checks to toggle emitters."