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