From d750af4396fa03e1cf9748618324f4a1d292c7b4 Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Mon, 31 Jul 2023 15:40:47 -0400 Subject: [PATCH] directory fix and hmm lock --- hmm.json | 14 +++++++------- source/funkin/modding/PolymodHandler.hx | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/hmm.json b/hmm.json index 16ca1a73f..51946f7a2 100644 --- a/hmm.json +++ b/hmm.json @@ -11,7 +11,7 @@ "name": "flixel", "type": "git", "dir": null, - "ref": "32cee07", + "ref": "32cee07a", "url": "https://github.com/EliteMasterEric/flixel" }, { @@ -42,7 +42,7 @@ "name": "haxeui-core", "type": "git", "dir": null, - "ref": "1e11510", + "ref": "1e115109", "url": "https://github.com/haxeui/haxeui-core/" }, { @@ -68,7 +68,7 @@ "name": "hxCodec", "type": "git", "dir": null, - "ref": "develop", + "ref": "c8c47e7", "url": "https://github.com/polybiusproxy/hxCodec" }, { @@ -95,14 +95,14 @@ "name": "lime", "type": "git", "dir": null, - "ref": "acb0334", + "ref": "acb0334c", "url": "https://github.com/EliteMasterEric/lime" }, { "name": "openfl", "type": "git", "dir": null, - "ref": "d33d489", + "ref": "d33d489a", "url": "https://github.com/EliteMasterEric/openfl" }, { @@ -120,7 +120,7 @@ { "name": "tink_json", "type": "haxelib", - "version": null + "version": "0.11.0" } ] -} +} \ No newline at end of file diff --git a/source/funkin/modding/PolymodHandler.hx b/source/funkin/modding/PolymodHandler.hx index 4f0476b6c..1ff2c0caa 100644 --- a/source/funkin/modding/PolymodHandler.hx +++ b/source/funkin/modding/PolymodHandler.hx @@ -29,9 +29,9 @@ class PolymodHandler /** * Where relative to the executable that mods are located. */ - static final MOD_FOLDER:String = #if (REDIRECT_ASSETS_FOLDER && macos) "../../../../../../example_mods" #elseif REDIRECT_ASSETS_FOLDER "../../../../example_mods" #else "mods" #end; + static final MOD_FOLDER:String = #if (REDIRECT_ASSETS_FOLDER && macos) "../../../../../../../example_mods" #elseif REDIRECT_ASSETS_FOLDER "../../../../example_mods" #else "mods" #end; - static final CORE_FOLDER:Null = #if (REDIRECT_ASSETS_FOLDER && macos) "../../../../../../assets" #elseif REDIRECT_ASSETS_FOLDER "../../../../assets" #else null #end; + static final CORE_FOLDER:Null = #if (REDIRECT_ASSETS_FOLDER && macos) "../../../../../../../assets" #elseif REDIRECT_ASSETS_FOLDER "../../../../assets" #else null #end; public static function createModRoot() {