From cecf7e251f615e980186f4dad61d5ee022ad7fd1 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Tue, 5 Mar 2019 00:06:33 -0500 Subject: [PATCH] Update machine_vending.dm --- code/modules/mining/machine_vending.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mining/machine_vending.dm b/code/modules/mining/machine_vending.dm index 1ede2040bb..7276039443 100644 --- a/code/modules/mining/machine_vending.dm +++ b/code/modules/mining/machine_vending.dm @@ -260,19 +260,19 @@ /obj/item/card/mining_point_card/mp500 desc = "A small card preloaded with 500 mining points. Swipe your ID card over it to transfer the points, then discard." - var/points = 500 + points = 500 /obj/item/card/mining_point_card/mp1000 desc = "A small card preloaded with 1000 mining points. Swipe your ID card over it to transfer the points, then discard." - var/points = 1000 + points = 1000 /obj/item/card/mining_point_card/mp1500 desc = "A small card preloaded with 1500 mining points. Swipe your ID card over it to transfer the points, then discard." - var/points = 1500 + points = 1500 /obj/item/card/mining_point_card/mp2000 desc = "A small card preloaded with 2000 mining points. Swipe your ID card over it to transfer the points, then discard." - var/points = 2000 + points = 2000 /obj/item/card/mining_point_card/attackby(obj/item/I, mob/user, params) if(istype(I, /obj/item/card/id))