diff --git a/code/modules/vending/_vending.dm b/code/modules/vending/_vending.dm index 12508a69d01..3f01ff23754 100644 --- a/code/modules/vending/_vending.dm +++ b/code/modules/vending/_vending.dm @@ -854,12 +854,12 @@ GLOBAL_LIST_EMPTY(vending_products) obj_flags |= EMAGGED to_chat(user, span_notice("You short out the product lock on [src].")) -/obj/machinery/vending/_try_interact(mob/user) +/obj/machinery/vending/interact(mob/user) if(seconds_electrified && !(machine_stat & NOPOWER)) if(shock(user, 100)) return - if(tilted && !user.buckled && !isAI(user)) + if(tilted && !user.buckled && !isAdminGhostAI(user)) to_chat(user, span_notice("You begin righting [src].")) if(do_after(user, 50, target=src)) untilt(user)