SERVER: Fix weapon skins not updating for standard progs

This commit is contained in:
Ian 2023-10-29 10:51:13 -04:00
parent 84fb0662e3
commit ed94af3de9

View file

@ -2221,4 +2221,11 @@ void () Weapon_Logic =
self.currentammo = self.weapons[0].weapon_reserve;
self.currentmag = self.weapons[0].weapon_magazine;
self.currentmag2 = self.weapons[0].weapon_magazine_left;
self.weaponskin = self.weapons[0].weapon_skin;
#ifndef FTE
self.weapon2skin = self.weapons[0].weapon_skin;
#endif // FTE
}