mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
[10537] Fixe typo in command help text.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
541098168d
commit
52508eee6e
5 changed files with 13 additions and 4 deletions
|
|
@ -24,7 +24,7 @@ CREATE TABLE `db_version` (
|
|||
`version` varchar(120) default NULL,
|
||||
`creature_ai_version` varchar(120) default NULL,
|
||||
`cache_id` int(10) default '0',
|
||||
`required_10503_04_mangos_gameobject_respawn` bit(1) default NULL
|
||||
`required_10537_01_mangos_command` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
||||
|
||||
--
|
||||
|
|
@ -488,7 +488,7 @@ LOCK TABLES `command` WRITE;
|
|||
/*!40000 ALTER TABLE `command` DISABLE KEYS */;
|
||||
INSERT INTO `command` VALUES
|
||||
('account',0,'Syntax: .account\r\n\r\nDisplay the access level of your account.'),
|
||||
('account characters',3,'Syntax: .account characters [#accountId|$accountName]\r\n\r\nShow list all characters for account seelcted by provided #accountId or $accountName, or for selected player in game.'),
|
||||
('account characters',3,'Syntax: .account characters [#accountId|$accountName]\r\n\r\nShow list all characters for account selected by provided #accountId or $accountName, or for selected player in game.'),
|
||||
('account create',4,'Syntax: .account create $account $password\r\n\r\nCreate account and set password to it.'),
|
||||
('account delete',4,'Syntax: .account delete $account\r\n\r\nDelete account with all characters.'),
|
||||
('account lock',0,'Syntax: .account lock [on|off]\r\n\r\nAllow login from account only from current used IP or remove this requirement.'),
|
||||
|
|
|
|||
7
sql/updates/10537_01_mangos_command.sql
Normal file
7
sql/updates/10537_01_mangos_command.sql
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
ALTER TABLE db_version CHANGE COLUMN required_10503_04_mangos_gameobject_respawn required_10537_01_mangos_command bit;
|
||||
|
||||
DELETE FROM command WHERE name IN ('account characters');
|
||||
|
||||
INSERT INTO command (name, security, help) VALUES
|
||||
('account characters',3,'Syntax: .account characters [#accountId|$accountName]\r\n\r\nShow list all characters for account selected by provided #accountId or $accountName, or for selected player in game.');
|
||||
|
||||
|
|
@ -101,6 +101,7 @@ pkgdata_DATA = \
|
|||
10503_02_characters_gameobject_respawn.sql \
|
||||
10503_03_mangos_creature_respawn.sql \
|
||||
10503_04_mangos_gameobject_respawn.sql \
|
||||
10537_01_mangos_command.sql \
|
||||
README
|
||||
|
||||
## Additional files to include when running 'make dist'
|
||||
|
|
@ -182,4 +183,5 @@ EXTRA_DIST = \
|
|||
10503_02_characters_gameobject_respawn.sql \
|
||||
10503_03_mangos_creature_respawn.sql \
|
||||
10503_04_mangos_gameobject_respawn.sql \
|
||||
10537_01_mangos_command.sql \
|
||||
README
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "10536"
|
||||
#define REVISION_NR "10537"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#ifndef __REVISION_SQL_H__
|
||||
#define __REVISION_SQL_H__
|
||||
#define REVISION_DB_CHARACTERS "required_10503_02_characters_gameobject_respawn"
|
||||
#define REVISION_DB_MANGOS "required_10503_04_mangos_gameobject_respawn"
|
||||
#define REVISION_DB_MANGOS "required_10537_01_mangos_command"
|
||||
#define REVISION_DB_REALMD "required_10008_01_realmd_realmd_db_version"
|
||||
#endif // __REVISION_SQL_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue