From c6aeaa868dab5da200727469b349ab8d9fc99506 Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 17 Aug 2024 18:40:38 +0200 Subject: [PATCH 1/2] Zone: Gorgrond - Found a better way to mark the cave entrances. Entrance will show up on the map when you ALT+Right Click on the entry. --- .../07 Draenor/Gorgrond.lua | 21 +++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/.contrib/Parser/DATAS/02 - Outdoor Zones/07 Draenor/Gorgrond.lua b/.contrib/Parser/DATAS/02 - Outdoor Zones/07 Draenor/Gorgrond.lua index a79d227efe..5c2e7fb5c1 100644 --- a/.contrib/Parser/DATAS/02 - Outdoor Zones/07 Draenor/Gorgrond.lua +++ b/.contrib/Parser/DATAS/02 - Outdoor Zones/07 Draenor/Gorgrond.lua @@ -3041,9 +3041,12 @@ root(ROOTS.Zones, { }, }), o(233505, { -- Unknown Petrified Egg - ["description"] = "Inside The Forgotten Caves with Pale and Spiders. Entrance at 51.40, 77.60.", + ["description"] = "Inside The Forgotten Caves with Pale and Spiders.", ["questID"] = 36713, - ["coord"] = { 53.0, 79.0, GORGROND }, + ["coords"] = { + { 53.0, 79.0, GORGROND }, -- Egg Location + { 51.4, 77.6, GORGROND }, -- Cave Entrance + }, ["g"] = { currency(824), -- Garrison Resources }, @@ -3088,9 +3091,12 @@ root(ROOTS.Zones, { }, }), o(236169, { -- Harvestable Precious Crystal - ["description"] = "Inside Glut's burrow. Entrance at 44.50, 50.75.", + ["description"] = "Inside Glut's burrow.", ["questID"] = 36651, - ["coord"] = { 46.1, 50.0, GORGROND }, + ["coords"] = { + { 46.1, 50.0, GORGROND }, -- Crystal + { 44.5, 50.75, GORGROND }, -- Glut's Burrow Entrance + }, ["g"] = { currency(824), -- Garrison Resources }, @@ -3171,9 +3177,12 @@ root(ROOTS.Zones, { ["sym"] = COMMON_TREASURE_SYM, }), o(231069, { -- Strange Looking Dagger - ["description"] = "Inside The Forgotten Caves with Pale and Spiders. Entrance at 51.40, 77.60.", + ["description"] = "Inside The Forgotten Caves with Pale and Spiders.", ["questID"] = 34940, - ["coord"] = { 53.0, 80.0, GORGROND }, + ["coord"] = { + { 53.0, 80.0, GORGROND }, -- Dagger Location + { 51.4, 77.6, GORGROND }, -- Cave Entrance + }, ["g"] = { i(118718), -- Pale Bloodthief Dagger }, From 1bbe735432f5ee137d9d49103b9ae03903ff756b Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 18 Aug 2024 00:42:05 +0200 Subject: [PATCH 2/2] Fix typos --- .../Parser/DATAS/02 - Outdoor Zones/07 Draenor/Gorgrond.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.contrib/Parser/DATAS/02 - Outdoor Zones/07 Draenor/Gorgrond.lua b/.contrib/Parser/DATAS/02 - Outdoor Zones/07 Draenor/Gorgrond.lua index 5c2e7fb5c1..94d238a306 100644 --- a/.contrib/Parser/DATAS/02 - Outdoor Zones/07 Draenor/Gorgrond.lua +++ b/.contrib/Parser/DATAS/02 - Outdoor Zones/07 Draenor/Gorgrond.lua @@ -3094,7 +3094,7 @@ root(ROOTS.Zones, { ["description"] = "Inside Glut's burrow.", ["questID"] = 36651, ["coords"] = { - { 46.1, 50.0, GORGROND }, -- Crystal + { 46.1, 50.0, GORGROND }, -- Crystal { 44.5, 50.75, GORGROND }, -- Glut's Burrow Entrance }, ["g"] = { @@ -3179,7 +3179,7 @@ root(ROOTS.Zones, { o(231069, { -- Strange Looking Dagger ["description"] = "Inside The Forgotten Caves with Pale and Spiders.", ["questID"] = 34940, - ["coord"] = { + ["coords"] = { { 53.0, 80.0, GORGROND }, -- Dagger Location { 51.4, 77.6, GORGROND }, -- Cave Entrance },