Core/Commands: enable .gm ingame command + misc cleaning
This commit is contained in:
parent
68079ef595
commit
cf9322ab4d
3 changed files with 8 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
5
data/sql/updates/world/2016_08_24_01.sql
Normal file
5
data/sql/updates/world/2016_08_24_01.sql
Normal file
|
|
@ -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');
|
||||
|
|
@ -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, "" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue