Skip to content

Commit b6db75c

Browse files
committed
feat: Teleport Command
1 parent e9f242d commit b6db75c

5 files changed

Lines changed: 1662 additions & 1625 deletions

File tree

Commands/Commands_GM.lua

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,19 @@ GM_genericCommands = {
130130
[GENERICS_command] = ".cast target ",
131131
[GENERICS_message] = "logGM_castTarget"
132132
},
133+
[GM_teleportToCommand] = {
134+
[GENERICS_isParametersNeeded] = true,
135+
[GENERICS_command] = ".teleport ",
136+
[GENERICS_message] = "logGM_teleportTo"
137+
},
133138
[GM_teleportAddCommand] = {
134139
[GENERICS_isParametersNeeded] = true,
135-
[GENERICS_command] = ".tele add ",
140+
[GENERICS_command] = ".teleport add ",
136141
[GENERICS_message] = "logGM_teleportAdd"
137142
},
138143
[GM_teleportDelCommand] = {
139144
[GENERICS_isParametersNeeded] = true,
140-
[GENERICS_command] = ".tele del ",
145+
[GENERICS_command] = ".teleport del ",
141146
[GENERICS_message] = "logGM_teleportDel"
142147
},
143148
[GM_listItemCommand] = {

Commands/declarations/command_keys.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ GM_castBackCommand = "castBack"
3737
GM_castDistCommand = "castDist"
3838
GM_castSelfCommand = "castSelf"
3939
GM_castTargetCommand = "castTarget"
40+
GM_teleportToCommand = "teleportTo"
4041
GM_teleportAddCommand = "teleportAdd"
4142
GM_teleportDelCommand = "teleportDel"
4243
GM_listItemCommand = "listItem"

0 commit comments

Comments
 (0)