[HOTFIX] remove unallowed weapon debug message

This commit is contained in:
hydrant
2021-04-11 22:49:43 +02:00
parent 1943c703c2
commit b12619b2a2

View File

@@ -153,7 +153,6 @@
checkWeaponhash() { checkWeaponhash() {
let h = this.weapon; let h = this.weapon;
if (allowedWeaponHashes.indexOf(h) === -1) { if (allowedWeaponHashes.indexOf(h) === -1) {
mp.gui.chat.push("unallowed weapon: " + h);
return true return true
} }
return false return false