We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently InventoryCommandParser returns messages from GetExampleCommands that are specific to the demo:
InventoryCommandParser
return new string[] { "Equip [miner] {itemName:stone pickaxe,equipAs:pick}", "Unequip [miner] {itemName:pick}", "Drop [miner] {itemName:stone pickaxe}", "Pickup [miner] {itemName:pebble}" };
The default should be more generic.
Additionally you should be able to pass settings to override the defaults with settings.
{ EquipExampleCommand = "", UnequipExampleCommand = "", DropExampleCommand = "", PickupExampleCommand = "" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently
InventoryCommandParser
returns messages from GetExampleCommands that are specific to the demo:The default should be more generic.
Additionally you should be able to pass settings to override the defaults with settings.
The text was updated successfully, but these errors were encountered: