[MIRROR] usr to user part two (#10015)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-01-31 14:27:34 -07:00
committed by GitHub
parent 538c8e7187
commit a245b8687f
203 changed files with 974 additions and 993 deletions

View File

@@ -82,14 +82,14 @@
try_toggle_door(usr)
/obj/machinery/appliance/cooker/oven/proc/try_toggle_door(mob/user)
if(!isliving(usr) || isAI(user))
if(!isliving(user) || isAI(user))
return
if(!usr.IsAdvancedToolUser())
if(!user.IsAdvancedToolUser())
to_chat(user, span_notice("You lack the dexterity to do that."))
return
if(!Adjacent(usr))
if(!Adjacent(user))
to_chat(user, span_notice("You can't reach the [src] from there, get closer!"))
return