mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 00:18:43 +01:00
Core/Misc: Corrections after recent pull merge
This commit is contained in:
@@ -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
|
||||
@@ -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.');
|
||||
@@ -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);
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user