RoomService v2.3.1
Loading...
Searching...
No Matches
RoomService.ResetChampionshipPoints Class Reference

Lua function to reset championship points for all players.

Member Function Documentation

◆ Implementation()

void RoomService.ResetChampionshipPoints.Implementation ( bool notify)
inlineprivate

Usage:

Lua function to reset championship points for all players.
Definition RoomServiceLuaFunctions.cs:425
Definition MyPluginInfo.cs:2
Parameters
notifyTrue to notify all players; false otherwise.

Source Code

440 {
441 if (!RoomServiceUtils.IsOnlineHost())
442 {
443 return;
444 }
445
446 ZeepkistNetwork.ResetChampionshipPoints(notify);
447 }