diff --git a/DevourClient/Features/Misc/Misc.cpp b/DevourClient/Features/Misc/Misc.cpp index c25a56a..3cd7bca 100644 --- a/DevourClient/Features/Misc/Misc.cpp +++ b/DevourClient/Features/Misc/Misc.cpp @@ -16,4 +16,14 @@ void Misc::WalkInlobby(bool walk) { Players::LocalPlayer->AddComponent(UltimateCharacterLocomotionHandler); } */ -} \ No newline at end of file +} + +void Misc::UnlimitedUV(bool active) { + try { + Players::LocalPlayer->GetComponent("NolanBehaviour")->CallMethodSafe("SetPurgatory", active); + } + catch (...) { + settings::unlimited_uv = false; + std::cout << "Unlimited UV error"; + } +}