From d2469cd8ba659ab51161524ae58f1c00120b5b7c Mon Sep 17 00:00:00 2001 From: chrischeng192 <40821439+chrischeng192@users.noreply.github.com> Date: Sat, 28 Aug 2021 13:21:42 +0800 Subject: [PATCH] Update GenericRegistry.cs --- QuestingUpdate/lib/addons/GenericMod/GenericRegistry.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/QuestingUpdate/lib/addons/GenericMod/GenericRegistry.cs b/QuestingUpdate/lib/addons/GenericMod/GenericRegistry.cs index 9a1d289..df42bda 100644 --- a/QuestingUpdate/lib/addons/GenericMod/GenericRegistry.cs +++ b/QuestingUpdate/lib/addons/GenericMod/GenericRegistry.cs @@ -97,11 +97,12 @@ private void RegisterItems() private bool Registry() { - if(File.Exists(AddonController.path + "/VolcanoidsMod.dll")) + if(File.Exists(AddonController.path + "/GenericMod/VolcanoidsMod.dll")) { return true; + } else { + return false; } - return false; } } }