This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/backend/looped/tunables/disable_phone.cpp

10 lines
218 B
C++
Raw Normal View History

2021-07-24 00:16:04 +02:00
#include "backend/looped/looped.hpp"
#include "script_global.hpp"
namespace big
{
void looped::tunables_disable_phone()
{
*script_global(20366).as<bool*>() = g.tunables.disable_phone; // Who even uses that...
2021-07-24 00:16:04 +02:00
}
}