Skip to content

Commit

Permalink
pain
Browse files Browse the repository at this point in the history
  • Loading branch information
BeagleGaming1 committed Aug 13, 2024
1 parent 056f022 commit 78a15a7
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

if(!transparent)
return
if(user != loc && !in_range(src, user)
if(user != loc && !in_range(src, user))
return SPAN_WARNING("[src] is too far away for you to see what's in it!")

if(!LAZYLEN(reagents.reagent_list))
Expand Down Expand Up @@ -88,6 +88,10 @@
/// The container that transfer amount will be set on
var/obj/item/reagent_container/container

/datum/action/item_action/reagent_container/set_transfer_amount/Destroy()
container = null
. = ..()

/datum/action/item_action/reagent_container/set_transfer_amount/New(mob/living/user, obj/item/holder)
..()
button.name = name
Expand Down

0 comments on commit 78a15a7

Please sign in to comment.