Lua function to reset championship points for all players.
◆ 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
-
| notify | True to notify all players; false otherwise. |
Source Code
440 {
441 if (!RoomServiceUtils.IsOnlineHost())
442 {
443 return;
444 }
445
446 ZeepkistNetwork.ResetChampionshipPoints(notify);
447 }