mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Added a command that executes other command if a condition is met.
This commit is contained in:
parent
59cc4cea7c
commit
77da611411
6 changed files with 126 additions and 7 deletions
|
|
@ -1005,6 +1005,15 @@ namespace MinecraftClient
|
|||
return null;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get a dictionary containing variables (names and value)
|
||||
/// </summary>
|
||||
/// <returns>A IDictionary<string, object> containing a name and a vlaue key pairs of variables</returns>
|
||||
public static Dictionary<string, object> GetVariables()
|
||||
{
|
||||
return AppVars;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Replace %variables% with their value from global AppVars
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue