Files
UT99-Mod-IChaChaMutEngine/Classes/ICCME_Event_Game_PlayerJoin.uc
2023-05-24 17:01:45 +01:00

15 lines
312 B
Ucode

class ICCME_Event_Game_PlayerJoin extends ICCME_Event_GameBase;
var ICCME_Stats_Player ReleventPlayerStats;
var bool bIsSpectating;
var bool bIsABot;
var bool bIsReconnect;
function doLog()
{
super.doLog();
log("bIsSpectating:"@bIsSpectating);
log("bIsABot:"@bIsABot);
log("bIsReconnect:"@bIsReconnect);
}