[+] Add Duty Points and Weapon Points for various Factions

Fixed minor stuff
This commit is contained in:
Lukas Moungos
2019-07-22 22:04:58 +02:00
parent 0a5dbb12d6
commit 0bcf1542d1
6 changed files with 34 additions and 13 deletions

View File

@@ -62,7 +62,6 @@ export default function weaponList(globalData: GlobalData) {
primary = "";
} else {
primary = String(item.SelectedItem.DisplayText);
mp.events.callRemote("updateWeaponSelection", primary, 1);
}
break;
case "Sekundäre":
@@ -70,7 +69,6 @@ export default function weaponList(globalData: GlobalData) {
secondary = "";
} else {
secondary = String(item.SelectedItem.DisplayText);
mp.events.callRemote("updateWeaponSelection", secondary, 2);
}
break;
case "Nahkampf":
@@ -78,7 +76,6 @@ export default function weaponList(globalData: GlobalData) {
melee = "";
} else {
melee = String(item.SelectedItem.DisplayText);
mp.events.callRemote("updateWeaponSelection", melee, 3);
}
break;
case "Spezial":
@@ -86,7 +83,6 @@ export default function weaponList(globalData: GlobalData) {
specialWep = "";
} else {
specialWep = String(item.SelectedItem.DisplayText);
mp.events.callRemote("updateWeaponSelection", specialWep, 4);
}
break;
}