From 2187384d3627a6e6b3e95eae604dca2fd1a696c6 Mon Sep 17 00:00:00 2001 From: ArcaneMusic <41715314+ArcaneMusic@users.noreply.github.com> Date: Mon, 2 May 2022 00:17:52 -0400 Subject: [PATCH] Fixes Drones being charged for using the Lathe on/off station (#66593) --- code/datums/components/payment.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/payment.dm b/code/datums/components/payment.dm index 198c5c1ae6e..fc6146501f2 100644 --- a/code/datums/components/payment.dm +++ b/code/datums/components/payment.dm @@ -43,7 +43,7 @@ if(!ismob(target)) return COMPONENT_OBJ_CANCEL_CHARGE var/mob/living/user = target - if(issilicon(user)) //They have evolved beyond the need for mere credits + if(issilicon(user) || isdrone(user)) //They have evolved beyond the need for mere credits return var/obj/item/card/id/card if(istype(user))