Changeset 487 for TFP-WebServer/CommandExtensions/src/Commands/Reply.cs
- Timestamp:
- Jun 17, 2024, 5:25:43 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TFP-WebServer/CommandExtensions/src/Commands/Reply.cs
r405 r487 5 5 [UsedImplicitly] 6 6 public class Reply : ConsoleCmdAbstract { 7 p rotectedoverride string getDescription () {7 public override string getDescription () { 8 8 return "send a message to the player who last sent you a PM"; 9 9 } 10 10 11 p rotectedoverride string getHelp () {11 public override string getHelp () { 12 12 return "Usage:\n" + 13 13 " reply <message>\n" + … … 15 15 } 16 16 17 p rotectedoverride string[] getCommands () {17 public override string[] getCommands () { 18 18 return new[] {"reply", "re"}; 19 19 }
Note:
See TracChangeset
for help on using the changeset viewer.