4 [
Attribute(
"1",
desc:
"If true gets name of otherPlayer to be subtitle param, else gets name of Player")]
5 protected bool m_bGetWinningSubtitleParam;
8 override string GetSubtitleParam(
int playerId, array<int> otherPlayerIds)
13 return super.GetSubtitleParam(playerId, otherPlayerIds);
15 if (m_bGetWinningSubtitleParam)
16 return playerManager.GetPlayerName(otherPlayerIds[0]);
18 return playerManager.GetPlayerName(playerId);