diff --git a/sql/mangos.sql b/sql/mangos.sql index b0eda3bdc..d8d3204d1 100644 --- a/sql/mangos.sql +++ b/sql/mangos.sql @@ -393,7 +393,7 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES ('gobject setphase',2,'Syntax: .gobject setphase #guid #phasemask\r\n\r\nGameobject with DB guid #guid phasemask changed to #phasemask with related world vision update for players. Gameobject state saved to DB and persistent.'), ('gobject target',2,'Syntax: .gobject target [#go_id|#go_name_part]\r\n\r\nLocate and show position nearest gameobject. If #go_id or #go_name_part provide then locate and show position of nearest gameobject with gameobject template id #go_id or name included #go_name_part as part.'), ('gobject turn',2,'Syntax: .gobject turn #goguid [#z_angle]\r\n\r\nChanges gameobject #goguid orientation (rotates gameobject around z axis). Optional parameters are (#y_angle,#x_angle) values that represents rotation angles around y and x axes.'), -('goname',1,'Syntax: .goname [$charactername]\r\n\r\nTeleport to the given character. Either specify the character name or click on the character\'s portrait, e.g. when you are in a group. Character can be offline.'), +('appear',1,'Syntax: .appear [$charactername]\r\n\r\nTeleport to the given character. Either specify the character name or click on the character\'s portrait, e.g. when you are in a group. Character can be offline.'), ('gps',1,'Syntax: .gps [$name|$shift-link]\r\n\r\nDisplay the position information for a selected character or creature (also if player name $name provided then for named player, or if creature/gameobject shift-link provided then pointed creature/gameobject if it loaded). Position information includes X, Y, Z, and orientation, map Id and zone Id'), ('groupgo',1,'Syntax: .groupgo [$charactername]\r\n\r\nTeleport the given character and his group to you. Teleported only online characters but original selected group member can be offline.'), ('guid',2,'Syntax: .guid\r\n\r\nDisplay the GUID for the selected character.'), diff --git a/sql/updates/m12652_command.sql b/sql/updates/m12652_command.sql index 117bf85fe..ce0c27622 100644 --- a/sql/updates/m12652_command.sql +++ b/sql/updates/m12652_command.sql @@ -1,4 +1,4 @@ update command set `name`='summon' where `name`='namego'; update command set `name`='appear' where `name`='goname'; -ALTER TABLE db_version CHANGE COLUMN required_c12631_01_mangos_creature required_m12652_command bit; \ No newline at end of file +ALTER TABLE db_version CHANGE COLUMN required_c12631_01_mangos_creature required_m12654_command bit; \ No newline at end of file diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index ea55827d3..3be8e5279 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "12652" + #define REVISION_NR "12655" #endif // __REVISION_NR_H__ diff --git a/src/shared/revision_sql.h b/src/shared/revision_sql.h index 9aaba9ff8..57a04997a 100644 --- a/src/shared/revision_sql.h +++ b/src/shared/revision_sql.h @@ -1,6 +1,6 @@ #ifndef __REVISION_SQL_H__ #define __REVISION_SQL_H__ #define REVISION_DB_CHARACTERS "required_c12631_01_characters_corpse" - #define REVISION_DB_MANGOS "required_m12652_command" + #define REVISION_DB_MANGOS "required_m12654_command" #define REVISION_DB_REALMD "required_c12484_02_realmd_account_access" #endif // __REVISION_SQL_H__