diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index 920351ba8cf..8aaac08db56 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -537,7 +537,7 @@ Airlock index -> wire color are { 9, 4, 6, 7, 5, 8, 1, 2, 3 }. if (!src.canSynControl() && src.canSynHack(C)) src.synhack(user, C) return - if(!src.canSynHack(C)) + if(!src.canSynHack(C) && !synDoorHacked) user << "The power is cut or something, I can't hack it!" return if(istype(C, /obj/item/device/hacktool/engineer)) diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index b4663f31bd2..55c60abafcb 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -530,7 +530,7 @@ Traitors and the like can also be revived with the previous role mostly intact. src << "Only administrators may use this command." return var/input = input(usr, "Please enter anything you want. Anything. Serious.", "What?", "") as message|null - var/customname = input(usr, "Pick a title for the report.", "Title") as message|null + var/customname = input(usr, "Pick a title for the report.", "Title") as text|null if(!input) return if(!customname)