finally built the crosshair of my dreams

This commit is contained in:
derek
2025-03-18 15:27:31 -05:00
parent 891ae8a7f2
commit 95a2c9da95
11 changed files with 212 additions and 160 deletions

View File

@@ -40,7 +40,7 @@ class_name gamemode
func apply_weapon_penalty():
for i in GameGlobals.ammo_reserve:
GameGlobals.ammo_reserve[i] *= ammo_drop_percentage
GameGlobals.ammo_reserve[i] = int(GameGlobals.ammo_reserve[i] * ammo_drop_percentage)
match weapon_penalty:
0: #Drop All
GameGlobals.held_guns = []