mirror of
https://github.com/mangosfour/server.git
synced 2025-12-31 13:37:07 +00:00
[11521] Fixed typo in chat command help.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
40fb57e461
commit
5876afb0a4
4 changed files with 10 additions and 4 deletions
6
sql/updates/11521_01_mangos_command.sql
Normal file
6
sql/updates/11521_01_mangos_command.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
ALTER TABLE db_version CHANGE COLUMN required_11517_01_mangos_spell_proc_event required_11521_01_mangos_command bit;
|
||||
|
||||
DELETE FROM command WHERE name = 'debug moditemvalue';
|
||||
|
||||
INSERT INTO command (name, security, help) VALUES
|
||||
('debug moditemvalue',3,'Syntax: .debug moditemvalue #guid #field [int|float| &= | |= | &=~ ] #value\r\n\r\nModify the field #field of the item #itemguid in your inventroy by value #value. \r\n\r\nUse type arg for set mode of modification: int (normal add/subtract #value as decimal number), float (add/subtract #value as float number), &= (bit and, set to 0 all bits in value if it not set to 1 in #value as hex number), |= (bit or, set to 1 all bits in value if it set to 1 in #value as hex number), &=~ (bit and not, set to 0 all bits in value if it set to 1 in #value as hex number). By default expect integer add/subtract.');
|
||||
Loading…
Add table
Add a link
Reference in a new issue