Core/Misc: Corrections after recent pull merge

This commit is contained in:
Shocker
2011-05-05 22:22:12 +03:00
parent 0baf01892c
commit ae7d55bb3b
4 changed files with 3 additions and 5 deletions

View File

@@ -1,2 +0,0 @@
DELETE FROM `spell_proc_event` WHERE `entry`=11129;
INSERT INTO `spell_proc_event` VALUES (11129, 0x04, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0); -- Combustion

View File

@@ -1,3 +1,3 @@
DELETE FROM `command` WHERE `name`='modify scale';
INSERT INTO `command` VALUES
('modify scale',1,'.modify scale #scale\nModify size of the selected player or creature to \"normal scale\"*rate. If no player or creature is selected, modify your size.\n#rate may range from 0.1 to 10.');
('modify scale',1,'.modify scale #scale\nModify size of the selected player or creature to \"normal scale\"*rate. If no player or creature is selected, modify your size.\n#rate may range from 0.1 to 10.');

View File

@@ -1 +1 @@
UPDATE `spell_proc_event` SET `procFlags`=0x00010000 WHERE `entry` IN (71602,71645); -- Dislodged Foreign Object
UPDATE `spell_proc_event` SET `procFlags`=0x00010000 WHERE `entry` IN (71602, 71645);

View File

@@ -683,7 +683,7 @@ public:
return false;
float Scale = (float)atof((char*)args);
if (Scale > 10.0f || Scale < 0.0f)
if (Scale > 10.0f || Scale < 0.1f)
{
handler->SendSysMessage(LANG_BAD_VALUE);
handler->SetSentErrorMessage(true);