From f6af11829c2fd77aea5a95dd911ca363ca7889b1 Mon Sep 17 00:00:00 2001 From: MindlessPuppetz Date: Sat, 8 Jul 2023 16:23:59 -0800 Subject: [PATCH] Update config.lua Fix: add missing notify config and cooldown lang. Turn off debug on by default --- config.lua | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/config.lua b/config.lua index 6d070be..f7f670f 100644 --- a/config.lua +++ b/config.lua @@ -2,10 +2,15 @@ Config = {} Config.GrapePickingCooldownTime = 10 -- Time Is In Minutes +Config.Notify = 'qb' + -- 'qb' = QBCore Notifications + -- 'okok' = OkOk Notifications + -- 'mythic' = Mythic Notifications + -- 'chat' = Chat Notifications Config.Target = 'qb-target' -- 'qb-target' = QBCore Target -- 'qtarget' = QTarget by Overextended -Config.DebugPoly = true +Config.DebugPoly = false -- True = Poly's Enabled -- False = Poly's Disabled Config.Blip = true @@ -55,7 +60,7 @@ Config.Notifications = { --Messages ["TaskCancel"] = "You have cancelled the task...", ["PickGrapesNextStepMessage"] = "Begin heading to the back two Doors of the Mansion...", - + ["Cooldown"] = "Your hands hurt, take some time to rest.", --OkOk Titles ["okok_VineyardTitle"] = "Juice System Aid", -} \ No newline at end of file +}