aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorShocker <shocker@freakz.ro>2011-09-21 07:47:16 -0700
committerShocker <shocker@freakz.ro>2011-09-21 07:47:16 -0700
commit562f528f87ef9f24088f2d300fe356282ff083b2 (patch)
tree7a2133901f867974263c96e141a1895e9525e746 /sql
parenta0030ef334ab9bdba65ab0d6ce78a45f4fa2b419 (diff)
parenta0a22ecbc8767682c8d8978c6c871a28311461a2 (diff)
Merge pull request #3160 from Fredi/developer
Scripts/Commands: Added .dev command to show <Dev> tag in nickname
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/2011_09_21_02_world_command.sql3
-rw-r--r--sql/updates/world/2011_09_21_02_world_trinity_string.sql4
2 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/2011_09_21_02_world_command.sql b/sql/updates/world/2011_09_21_02_world_command.sql
new file mode 100644
index 00000000000..629f0c9ab32
--- /dev/null
+++ b/sql/updates/world/2011_09_21_02_world_command.sql
@@ -0,0 +1,3 @@
+DELETE FROM command WHERE name = 'dev';
+INSERT INTO command VALUES
+('dev', 3, 'Syntax: .dev [on/off]\r\n\r\nEnable or Disable in game Dev tag or show current state if on/off not provided.');
diff --git a/sql/updates/world/2011_09_21_02_world_trinity_string.sql b/sql/updates/world/2011_09_21_02_world_trinity_string.sql
new file mode 100644
index 00000000000..954c4a7eded
--- /dev/null
+++ b/sql/updates/world/2011_09_21_02_world_trinity_string.sql
@@ -0,0 +1,4 @@
+DELETE FROM trinity_string WHERE entry IN (1137, 1138);
+INSERT INTO trinity_string (`entry`,`content_default`) VALUES
+(1137, 'Dev mode is ON'),
+(1138, 'Dev mode is OFF');