From e0cc5959c98e1a4006f117a34e6fba5dadd8acd0 Mon Sep 17 00:00:00 2001 From: Marco Cawthorne Date: Sun, 10 Jul 2022 14:52:43 -0700 Subject: [PATCH] item_armor: correct point values for the different types --- src/server/item_armor.qc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/server/item_armor.qc b/src/server/item_armor.qc index 74f3f2c..11790d0 100644 --- a/src/server/item_armor.qc +++ b/src/server/item_armor.qc @@ -92,13 +92,13 @@ item_armor::Touch(entity eToucher) /* get the total points the armor can give */ switch (classname) { case "item_armor1": - tp = 25; + tp = 100; break; case "item_armor2": - tp = 50; + tp = 150; break; case "item_armor3": - tp = 100; + tp = 200; break; default: print("^1item_armor: unknown armor type\n");