[11521] Fixed typo in chat command help.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
Iriskin 2011-05-21 23:54:21 +04:00 committed by VladimirMangos
parent 40fb57e461
commit 5876afb0a4
4 changed files with 10 additions and 4 deletions

View 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.');