summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-03-14 12:01:24 -0600
committerJared Adams <jaxad0127@gmail.com>2009-03-14 12:01:24 -0600
commit3dfbb9bbd106502f95c8d3e4f05a26940e0e290d (patch)
tree0dd43b86f3eb4e6c48261eb0b3e9004322782e7a /src/map/clif.c
parent838988612ff7171369aa93094b8d6166bb599f9f (diff)
downloadtmwa-3dfbb9bbd106502f95c8d3e4f05a26940e0e290d.tar.gz
tmwa-3dfbb9bbd106502f95c8d3e4f05a26940e0e290d.tar.bz2
tmwa-3dfbb9bbd106502f95c8d3e4f05a26940e0e290d.tar.xz
tmwa-3dfbb9bbd106502f95c8d3e4f05a26940e0e290d.zip
More @command cleanup
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 61377d2..b555231 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -8024,9 +8024,9 @@ void clif_parse_Shift(int fd, struct map_session_data *sd) { // Rewriten by [Yor
memset(player_name, '\0', sizeof(player_name));
if ((battle_config.atc_gmonly == 0 || pc_isGM(sd)) &&
- (pc_isGM(sd) >= get_atcommand_level(AtCommand_JumpTo))) {
+ (pc_isGM(sd) >= get_atcommand_level(AtCommand_Goto))) {
memcpy(player_name, RFIFOP(fd,2), 24);
- atcommand_jumpto(fd, sd, "@jumpto", player_name); // as @jumpto
+ atcommand_goto(fd, sd, "@jumpto", player_name); // as @jumpto
}
return;