From d47c24a8d01bd5298099a3e9b1a70fe74018dbba Mon Sep 17 00:00:00 2001
From: Ghom <42542238+Ghommie@users.noreply.github.com>
Date: Mon, 16 Mar 2020 16:44:15 +0100
Subject: [PATCH 1/2] Fixing right click / verb set_APTFT
---
code/modules/reagents/reagent_containers.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/modules/reagents/reagent_containers.dm b/code/modules/reagents/reagent_containers.dm
index adac8b5651..a85d181c86 100644
--- a/code/modules/reagents/reagent_containers.dm
+++ b/code/modules/reagents/reagent_containers.dm
@@ -43,7 +43,7 @@
set_APTFT()
return TRUE
-/obj/item/reagent_containers/proc/set_APTFT(mob/user) //set amount_per_transfer_from_this
+/obj/item/reagent_containers/proc/set_APTFT() //set amount_per_transfer_from_this
set name = "Set Transfer Amount"
set category = "Object"
set waitfor = FALSE
From a24a67e4896c36d14f2f806fe60f44cfe2a21c3f Mon Sep 17 00:00:00 2001
From: Ghom <42542238+Ghommie@users.noreply.github.com>
Date: Mon, 16 Mar 2020 17:07:30 +0100
Subject: [PATCH 2/2] Update reagent_containers.dm
---
code/modules/reagents/reagent_containers.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/modules/reagents/reagent_containers.dm b/code/modules/reagents/reagent_containers.dm
index a85d181c86..b8273e33ab 100644
--- a/code/modules/reagents/reagent_containers.dm
+++ b/code/modules/reagents/reagent_containers.dm
@@ -50,7 +50,7 @@
var/N = input("Amount per transfer from this:","[src]") as null|anything in possible_transfer_amounts
if(N)
amount_per_transfer_from_this = N
- to_chat(user, "[src]'s transfer amount is now [amount_per_transfer_from_this] units.")
+ to_chat(usr, "[src]'s transfer amount is now [amount_per_transfer_from_this] units.")
/obj/item/reagent_containers/proc/add_initial_reagents()
if(list_reagents)