fixed a lua error

git [04-20-18 - 19:37]
fixed a lua error
Filename
DailyAutoShare.txt
DasChatMessage.lua
questData/Wrothgar.lua
startup.lua
diff --git a/DailyAutoShare.txt b/DailyAutoShare.txt
index a16946d..fe50ccb 100644
--- a/DailyAutoShare.txt
+++ b/DailyAutoShare.txt
@@ -1,6 +1,6 @@
 ## Title: DailyAutoShare
 ## Author: manavortex
-## Version: 3.1.3
+## Version: 3.1.4
 ## APIVersion: 100022
 ## SavedVariables: DAS_Settings DAS_Globals
 ## OptionalDependsOn: LibStub LibCustomMenu LibAddonMenu-2.0 LibMediaProvider-1.0 pchat
diff --git a/DasChatMessage.lua b/DasChatMessage.lua
index 9adbd61..6598549 100644
--- a/DasChatMessage.lua
+++ b/DasChatMessage.lua
@@ -87,8 +87,9 @@ function DAS.OnChatMessage(eventCode, channelType, fromName, messageText, _, fro

     if isPlayerName then
         local groupStatus = IsUnitGrouped(unittagplayer)
-        if groupStatus and not channelTypes[channelType] and DAS.GetGroupLeaveOnNewSearch() then
-            GroupLeave()
+        if groupStatus and not channelTypes[channelType] then --and DAS.GetGroupLeaveOnNewSearch() then
+            -- GroupLeave()
+            return
         else
             DAS.TryTriggerAutoAcceptInvite()
         end
diff --git a/questData/Wrothgar.lua b/questData/Wrothgar.lua
index 07a2478..5e421af 100644
--- a/questData/Wrothgar.lua
+++ b/questData/Wrothgar.lua
@@ -30,7 +30,7 @@ table.insert(tbl2, {[1] = "cori",   [2] = "nb"})
 table.insert(tbl2, {[1] = "dolmen", [2] = "zan", [3] = "dol",   [4] = "ud"})
 table.insert(tbl2, {[1] = "ogre",   [2] = "mad", [3] = "shrek"})

-table.insert(tbl2, "harpy")
+table.insert(tbl2, {[1] = "eggs",   [2] = "harpy"})
 table.insert(tbl2, "spirits")
 table.insert(tbl2, "durzog")
 table.insert(tbl2, {[1] ="dwemer",  [2] = "parts"})
diff --git a/startup.lua b/startup.lua
index d1c08ff..9d3d864 100644
--- a/startup.lua
+++ b/startup.lua
@@ -3,7 +3,7 @@ DAS                         = DailyAutoShare
 local DailyAutoShare        = DailyAutoShare

 DAS.name                    = "Daily Autoshare"
-DAS.version                 = "3.1.3"
+DAS.version                 = "3.1.4"
 DAS.author                  = "manavortex"
 DAS.settings                = {}
 DAS.globalSettings          = {}