Made Project Buildable. Just realized Project cant be Build for Others

This commit is contained in:
Unknown
2024-07-20 23:46:00 +02:00
parent 694fbd7585
commit 8123533f0b
119 changed files with 112181 additions and 26 deletions

View File

@ -192,6 +192,21 @@ namespace PlayerStuff {
}
}
static std::string SanitizeString(std::string Input) {
std::string output = "";
int Sizecc = Input.size();
for (size_t i = 0; i < 14; i++)
{
if (i >= Sizecc) break;
output += Input[i];
}
return output;
}
static std::wstring SanitizeWString(std::wstring Input) {
std::wstring output = L"";
@ -328,6 +343,11 @@ namespace Settings {
float Host_PlayersGravityScale = 0.5f;
Host_Pawns hostPawn = Host_Pawns::defaultEmptyPawn;
//Anti Cheat
bool AntiCheat = false;
bool AC_InvalidItemSpawner = false;
bool AC_NameChanger = false;
//Misc