mirror of
https://github.com/HoonTB/Project-AS.git
synced 2025-12-26 11:51:21 +09:00
bump: Unity 6.3 LTS
This commit is contained in:
@@ -9,7 +9,7 @@ public class Command
|
||||
|
||||
public string GetParam(string key, string defaultValue = "")
|
||||
{
|
||||
return Params.ContainsKey(key) ? Params[key].ToString() : defaultValue;
|
||||
return Params.TryGetValue(key, out var val) ? val.ToString() : defaultValue;
|
||||
}
|
||||
}
|
||||
public class Script
|
||||
|
||||
Reference in New Issue
Block a user