Updated OnLogin and OnLogout methods

This commit is contained in:
Flerp 2025-11-15 18:23:53 -08:00
parent 8177d4a310
commit 915e8006f4

View File

@ -46,12 +46,12 @@ class ServerIdler_PlayerScript : public PlayerScript
public: public:
ServerIdler_PlayerScript() : PlayerScript("ServerIdler_PlayerScript") {} ServerIdler_PlayerScript() : PlayerScript("ServerIdler_PlayerScript") {}
void OnLogin(Player*) override void OnPlayerLogin(Player*) override
{ {
ApplyInterval(); ApplyInterval();
} }
void OnLogout(Player*) override void OnPlayerLogout(Player*) override
{ {
ApplyInterval(); ApplyInterval();
} }