Locale stuff + fixes

This commit is contained in:
Vortrex
2021-11-19 19:27:34 -06:00
parent db6ff2e4b4
commit 8f4ac90dc6
37 changed files with 702 additions and 531 deletions

View File

@@ -422,6 +422,12 @@ function Enum(constantsList) {
// ===========================================================================
function clearArray(array) {
array.splice(0, array.length)
}
// ===========================================================================
function isServerScript() {
return (typeof server != "undefined");
}
@@ -510,8 +516,8 @@ function isCustomCameraSupported() {
// ===========================================================================
function isFightStyleSupported() {
return supportedFeatures.fightStyle[getGame()];
function areFightStylesSupported() {
return supportedFeatures.fightStyles[getGame()];
}
// ===========================================================================