aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/updates/world/2011_03_21_3_world_spell_proc_event.sql2
-rw-r--r--sql/updates/world/2011_05_05_00_world_command.sql (renamed from sql/updates/world/2011_03_21_2_world_command.sql)2
-rw-r--r--sql/updates/world/2011_05_05_01_spell_proc_event.sql (renamed from sql/updates/world/dislodged Foreign Object.sql)2
-rw-r--r--src/server/scripts/Commands/cs_modify.cpp2
4 files changed, 3 insertions, 5 deletions
diff --git a/sql/updates/world/2011_03_21_3_world_spell_proc_event.sql b/sql/updates/world/2011_03_21_3_world_spell_proc_event.sql
deleted file mode 100644
index 5e1d017fb3a..00000000000
--- a/sql/updates/world/2011_03_21_3_world_spell_proc_event.sql
+++ /dev/null
@@ -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 \ No newline at end of file
diff --git a/sql/updates/world/2011_03_21_2_world_command.sql b/sql/updates/world/2011_05_05_00_world_command.sql
index 0c16d9b7580..b31ffc2ff0a 100644
--- a/sql/updates/world/2011_03_21_2_world_command.sql
+++ b/sql/updates/world/2011_05_05_00_world_command.sql
@@ -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.'); \ No newline at end of file
+('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.');
diff --git a/sql/updates/world/dislodged Foreign Object.sql b/sql/updates/world/2011_05_05_01_spell_proc_event.sql
index 247af7ad891..6c5db5d3663 100644
--- a/sql/updates/world/dislodged Foreign Object.sql
+++ b/sql/updates/world/2011_05_05_01_spell_proc_event.sql
@@ -1 +1 @@
-UPDATE `spell_proc_event` SET `procFlags`=0x00010000 WHERE `entry` IN (71602,71645); -- Dislodged Foreign Object \ No newline at end of file
+UPDATE `spell_proc_event` SET `procFlags`=0x00010000 WHERE `entry` IN (71602, 71645);
diff --git a/src/server/scripts/Commands/cs_modify.cpp b/src/server/scripts/Commands/cs_modify.cpp
index 79422531a77..9e3851ccc8a 100644
--- a/src/server/scripts/Commands/cs_modify.cpp
+++ b/src/server/scripts/Commands/cs_modify.cpp
@@ -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);