Begin adding RTP

Part of #2
This commit is contained in:
zontreck 2025-03-06 09:36:38 -07:00
parent 1f5458b8b1
commit 740801bd96
3 changed files with 10 additions and 3 deletions

View file

@ -150,6 +150,8 @@ namespace AriasServerUtils
api.ChatCommands.Create("warps").RequiresPlayer().RequiresPrivilege(Privilege.chat).WithDescription("Lists all server warps").HandleWith(Events.HandleWarpList);
api.ChatCommands.Create("back").RequiresPlayer().RequiresPrivilege(Privilege.chat).WithDescription("Returns you to the last location you were at").HandleWith(Events.HandleBack);
api.ChatCommands.Create("rtp").RequiresPlayer().RequiresPrivilege(Privilege.chat).WithDescription("Seeks a position possibly thousands of blocks away to teleport to.").HandleWith(Events.HandleRTP);
}