From f279faf2fd95468c19ac58ddfdfbdeb1c0fbd7dc Mon Sep 17 00:00:00 2001 From: Heroman Date: Tue, 30 Apr 2019 05:42:14 +1000 Subject: [PATCH] Fixes point card worth --- code/modules/catalogue/rewards/exp_point_items.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/catalogue/rewards/exp_point_items.dm b/code/modules/catalogue/rewards/exp_point_items.dm index 4c7ab307b7..47e066763b 100644 --- a/code/modules/catalogue/rewards/exp_point_items.dm +++ b/code/modules/catalogue/rewards/exp_point_items.dm @@ -2,7 +2,7 @@ name = "exploration point card" desc = "A small card preloaded with exploration points. Swipe your Cataloguer over it to transfer the points, then discard." icon_state = "data" - var/points = 500 + var/points = 50 /obj/item/weapon/card/exploration_point_card/attackby(obj/item/I, mob/user, params) if(istype(I, /obj/item/device/cataloguer))