item_armor: correct point values for the different types

This commit is contained in:
Marco Cawthorne 2022-07-10 14:52:43 -07:00
parent ba883ac321
commit e0cc5959c9
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 3 additions and 3 deletions

View File

@ -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");