From f404bb1e8799b1ce7b838bd809e87af191bbed7f Mon Sep 17 00:00:00 2001 From: alexkar598 <25136265+alexkar598@users.noreply.github.com> Date: Mon, 20 Jun 2022 15:44:50 -0400 Subject: [PATCH] Update items.dm --- code/modules/holodeck/items.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/holodeck/items.dm b/code/modules/holodeck/items.dm index 3509072a7ce5..664b0ba0f4c3 100644 --- a/code/modules/holodeck/items.dm +++ b/code/modules/holodeck/items.dm @@ -104,7 +104,8 @@ density = TRUE /obj/structure/holohoop/attackby(obj/item/W as obj, mob/user as mob, params) - if(get_dist(src,user)<2) + var/dist = get_dist(src,user) + if(dist<2 || (islizard(user) && dist<4)) if(user.transferItemToLoc(W, drop_location())) visible_message(span_warning(" [user] dunks [W] into \the [src]!"))