item_armor: remove unnecessary .skin assignment

This commit is contained in:
Marco Cawthorne 2022-07-10 15:55:10 -07:00
parent cc9868b27b
commit 369db33689
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 0 additions and 3 deletions

View File

@ -182,7 +182,6 @@ item_armor1(void)
precache_model("models/g_armor.mdl");
spawnfunc_item_armor();
self.classname = "item_armor1";
self.skin = 0;
}
void
@ -191,7 +190,6 @@ item_armor2(void)
precache_model("models/y_armor.mdl");
spawnfunc_item_armor();
self.classname = "item_armor2";
self.skin = 1;
}
void
@ -200,5 +198,4 @@ item_armor3(void)
precache_model("models/r_armor.mdl");
spawnfunc_item_armor();
self.classname = "item_armor3";
self.skin = 2;
}