- Timestamp:
- Feb 22, 2023, 5:48:07 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2/CommandExtensions/src/Commands/ShowInventory.cs
r402 r405 6 6 [UsedImplicitly] 7 7 public class ShowInventory : ConsoleCmdAbstract { 8 p ublic override string GetDescription () {8 protected override string getDescription () { 9 9 return "list inventory of a given player"; 10 10 } 11 11 12 p ublic override string GetHelp () {12 protected override string getHelp () { 13 13 return "Usage:\n" + 14 14 " showinventory <user id / player name / entity id> [tag]\n" + … … 21 21 } 22 22 23 p ublic override string[] GetCommands () {23 protected override string[] getCommands () { 24 24 return new[] {"showinventory", "si"}; 25 25 }
Note:
See TracChangeset
for help on using the changeset viewer.