From fec0fa667c045f54b1956f1ee9ff06391264fff0 Mon Sep 17 00:00:00 2001 From: Zachary Lockwood Date: Sun, 28 Jul 2024 00:39:00 -0400 Subject: [PATCH] fix upe version --- Projects/UniversalPropertyEnhancer/mod/info.lua | 6 +++--- source/dllmain.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Projects/UniversalPropertyEnhancer/mod/info.lua b/Projects/UniversalPropertyEnhancer/mod/info.lua index 1610db8..7217a56 100644 --- a/Projects/UniversalPropertyEnhancer/mod/info.lua +++ b/Projects/UniversalPropertyEnhancer/mod/info.lua @@ -1,11 +1,11 @@ name = "Universal Property Enhancer" description = "Adds the ability to override and change properties easily" -version = "1.0.0" +version = 10000 author = "Zarklord" -base_api_version = 100000 +base_api_version = 10000 cpp_mod_requirements = { - ["UniversalPropertyEnhancer"] = 100000, + ["UniversalPropertyEnhancer"] = 10000, } priority = 1000000 \ No newline at end of file diff --git a/source/dllmain.cpp b/source/dllmain.cpp index 2e09cc3..bd03e73 100644 --- a/source/dllmain.cpp +++ b/source/dllmain.cpp @@ -20,7 +20,7 @@ #include "pch.h" #define UPE_MODNAME "UniversalPropertyEnhancer" -#define UPE_VERSION 100000 +#define UPE_VERSION 10000 BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call,