summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data/sql/updates/world/2016_08_24_00.sql5
-rw-r--r--data/sql/updates/world/2016_08_24_01.sql5
-rw-r--r--src/scripts/Commands/cs_gm.cpp2
3 files changed, 8 insertions, 4 deletions
diff --git a/data/sql/updates/world/2016_08_24_00.sql b/data/sql/updates/world/2016_08_24_00.sql
index 165edfd67c..2e27d84a98 100644
--- a/data/sql/updates/world/2016_08_24_00.sql
+++ b/data/sql/updates/world/2016_08_24_00.sql
@@ -1,8 +1,7 @@
-/*
-Insert MovementType to Fizzle Darkstorm (GUID = 6455) and Burning Blade Fanatic (GUID = 6432) npc
-*/
ALTER TABLE world_db_version CHANGE COLUMN 2016_08_21_00 2016_08_24_00 bit;
+-- Insert MovementType to Fizzle Darkstorm (GUID = 6455) and Burning Blade Fanatic (GUID = 6432) npc
+
DELETE FROM `waypoint_data` WHERE `id` IN (645500,643200);
-- Fizzle Darkstorm
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
diff --git a/data/sql/updates/world/2016_08_24_01.sql b/data/sql/updates/world/2016_08_24_01.sql
new file mode 100644
index 0000000000..0bdfcf2e8e
--- /dev/null
+++ b/data/sql/updates/world/2016_08_24_01.sql
@@ -0,0 +1,5 @@
+ALTER TABLE world_db_version CHANGE COLUMN 2016_08_24_00 2016_08_24_01 bit;
+
+UPDATE command SET security = 0 WHERE name = 'gm ingame';
+
+DELETE FROM command WHERE name IN ('evade', 'chatmessage');
diff --git a/src/scripts/Commands/cs_gm.cpp b/src/scripts/Commands/cs_gm.cpp
index 466ff6b567..d88c6138aa 100644
--- a/src/scripts/Commands/cs_gm.cpp
+++ b/src/scripts/Commands/cs_gm.cpp
@@ -31,7 +31,7 @@ public:
{
{ "chat", SEC_GAMEMASTER, false, &HandleGMChatCommand, "" },
{ "fly", SEC_GAMEMASTER, false, &HandleGMFlyCommand, "" },
- //{ "ingame", SEC_PLAYER, true, &HandleGMListIngameCommand, "" },
+ { "ingame", SEC_PLAYER, true, &HandleGMListIngameCommand, "" },
{ "list", SEC_GAMEMASTER, true, &HandleGMListFullCommand, "" },
{ "visible", SEC_GAMEMASTER, false, &HandleGMVisibleCommand, "" },
{ "", SEC_GAMEMASTER, false, &HandleGMCommand, "" }