mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2025-11-14 17:46:03 +00:00
more bug fix and security update
This commit is contained in:
parent
e40f147121
commit
6216752a83
23 changed files with 123 additions and 146 deletions
8
dist/ba_root/mods/spazmod/hitmessage.py
vendored
8
dist/ba_root/mods/spazmod/hitmessage.py
vendored
|
|
@ -16,16 +16,16 @@ def handle_hit(mag, pos):
|
|||
if mag >= 110:
|
||||
PopupText("#PRO !", color=(1, 0.2, 0.2), scale=1.6,
|
||||
position=pos).autoretain()
|
||||
elif mag >= 93 and mag < 110:
|
||||
elif 93 <= mag < 110:
|
||||
PopupText("GOOD ONE!", color=(1, 0.3, 0.1), scale=1.6,
|
||||
position=pos).autoretain()
|
||||
elif mag >= 63 and mag < 93:
|
||||
elif 63 <= mag < 93:
|
||||
PopupText("OH! YEAH", color=(1, 0.5, 0.2), scale=1.6,
|
||||
position=pos).autoretain()
|
||||
elif mag >= 45 and mag < 63:
|
||||
elif 45 <= mag < 63:
|
||||
PopupText("WTF!", color=(0.7, 0.4, 0.2), scale=1.6,
|
||||
position=pos).autoretain()
|
||||
elif mag > 30 and mag < 45:
|
||||
elif 30 < mag < 45:
|
||||
PopupText("!!!", color=(1, 1, 1), scale=1.6,
|
||||
position=pos).autoretain()
|
||||
except:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue