mirror of
https://github.com/DumbDev69420/EscapeTheBackrooms_Internal.git
synced 2025-06-29 18:22:32 +08:00
Made Project Buildable. Just realized Project cant be Build for Others
This commit is contained in:
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user