- Timestamp:
- Feb 22, 2023, 5:48:07 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2/CommandExtensions/src/Commands/Give.cs
r402 r405 6 6 [UsedImplicitly] 7 7 public class Give : ConsoleCmdAbstract { 8 p ublic override string GetDescription () {8 protected override string getDescription () { 9 9 return "give an item to a player (entity id or name)"; 10 10 } 11 11 12 p ublic override string GetHelp () {12 protected override string getHelp () { 13 13 return "Give an item to a player by dropping it in front of that player\n" + 14 14 "Usage:\n" + … … 21 21 } 22 22 23 p ublic override string[] GetCommands () {23 protected override string[] getCommands () { 24 24 return new[] {"give", string.Empty}; 25 25 }
Note:
See TracChangeset
for help on using the changeset viewer.