Skip to content

Commit

Permalink
bugfix: photocopier fix (#6207)
Browse files Browse the repository at this point in the history
  • Loading branch information
Samirakis authored Dec 16, 2024
1 parent 40ee930 commit d2d0324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/paperwork/photocopier.dm
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@
toner = 0

/obj/machinery/photocopier/MouseDrop_T(mob/target, mob/living/user)
if(!istype(target) || target.buckled || get_dist(user, src) > 1 || get_dist(user, target) > 1 || user.incapacitated() || HAS_TRAIT(user, TRAIT_HANDS_BLOCKED) || isAI(user) || target == copymob)
if(!istype(target) || target.buckled || get_dist(user, src) > 1 || get_dist(user, target) > 1 || user.incapacitated() || HAS_TRAIT(user, TRAIT_HANDS_BLOCKED) || isAI(user))
return
if(check_mob()) //is target mob or another mob on this photocopier already?
return
Expand Down

0 comments on commit d2d0324

Please sign in to comment.