mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 04:23:04 +00:00
provide list of registered commands
This commit is contained in:
parent
0589ccb039
commit
8abd08fda8
1 changed files with 5 additions and 0 deletions
|
@ -20,6 +20,9 @@ namespace SanAndreasUnity.Commands
|
|||
|
||||
readonly Dictionary<Player, PlayerData> m_perPlayerData = new Dictionary<Player, PlayerData>();
|
||||
|
||||
List<string> m_registeredCommands = new List<string>();
|
||||
public IReadOnlyList<string> RegisteredCommands => m_registeredCommands;
|
||||
|
||||
public float vehicleLimitInterval = 3f;
|
||||
public float pedLimitInterval = 2f;
|
||||
public float weaponLimitInterval = 1f;
|
||||
|
@ -57,6 +60,8 @@ namespace SanAndreasUnity.Commands
|
|||
cmd.commandHandler = ProcessCommand;
|
||||
CommandManager.Singleton.RegisterCommand(cmd);
|
||||
}
|
||||
|
||||
m_registeredCommands = commands.Select(c => c.command).ToList();
|
||||
}
|
||||
|
||||
private void PlayerOnDisable(Player player)
|
||||
|
|
Loading…
Reference in a new issue