Skip to content

Commit

Permalink
Rename Walkto command into Walk.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcernat committed Jun 28, 2013
1 parent 537a908 commit 14970b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -270,8 +270,8 @@ public void registerCoreMembers() {
registerCoreMember(WaitCommand.class,
"WAIT", "wait (duration:#{5s}) (queue:queue_type) (player:player_name{attached}) (npcid:#{attached})", 0);

registerCoreMember(WalkToCommand.class,
"WALKTO", "walkto [location:x,y,z,world] (speed:#)", 1);
registerCoreMember(WalkCommand.class,
"WALK", "walk [location:x,y,z,world] (speed:#)", 1);

registerCoreMember(WeatherCommand.class,
"WEATHER", "weather [type:{global}|player] [sunny|storm|thunder]", 1);
Expand Down
Expand Up @@ -13,9 +13,9 @@
* Your command!
* This class is a template for a Command in Denizen.
*
* @author Jeremy Schroeder (aufdemrand)
* @author Jeremy Schroeder
*/
public class WalkToCommand extends AbstractCommand implements Listener {
public class WalkCommand extends AbstractCommand implements Listener {

@Override
public void parseArgs(ScriptEntry scriptEntry) throws InvalidArgumentsException {
Expand Down

0 comments on commit 14970b1

Please sign in to comment.