From e91c0f4c9159d668ea19c99686838704131d6fa3 Mon Sep 17 00:00:00 2001 From: Martin Barker Date: Thu, 1 Jul 2021 17:55:03 +0100 Subject: [PATCH] Bugfix/hexd ordering (#26) * Revered the mod loader order after HEXT so it fixes the texture load order Co-authored-by: Martin Barker --- 7thWrapperLib/Wrap.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/7thWrapperLib/Wrap.cs b/7thWrapperLib/Wrap.cs index 7b2abb2f..66141667 100644 --- a/7thWrapperLib/Wrap.cs +++ b/7thWrapperLib/Wrap.cs @@ -390,7 +390,8 @@ public void Run(RemoteHooking.IContext context, RuntimeParams parms) { } } } - } + } + profile.Mods.Reverse(); } catch (Exception e) { DebugLogger.WriteLine(e.ToString()); return;