diff --git a/DarwinsParadox/dllmain.cpp b/DarwinsParadox/dllmain.cpp index 6c72eda..8350444 100644 --- a/DarwinsParadox/dllmain.cpp +++ b/DarwinsParadox/dllmain.cpp @@ -46,7 +46,7 @@ static std::string log_content; // Plugin settings const std::string SETTINGS_FILE = "./pluginsettings.ini"; -const char* FIX_VERSION = "1.0.0"; +const char* FIX_VERSION = "1.0.1"; const char* FIX_INFORMATIONS = "This fix allows to:\n - Control FOV in game.\n - Enable ultrawide.\n - Disable depth of field.\n - Disable chromatic aberrations.\n - Disable vignetting.\n - Disable fog.\n - Re enable dev console.\n - Enable cheats."; const char* DONATION_URL = "https://buymeacoffee.com/k4sh44"; @@ -65,7 +65,7 @@ static FixToggle individualFixes[] = { static FixToggle cheatFixes[] = { { "Time dilation", &Time_Dilation_fix_enabled, GameFixes::TimeDilation, "ALT + 1 (top keyboard row) to toggle" }, - { "Stealth",&StealthMode_fix_enabled, GameFixes::Stealth, "ALT + 2 (top keyboard row) to toggle.\nEnemies will ignore you." } + { "Stealth",&StealthMode_fix_enabled, GameFixes::Stealth, "ALT + 2 (top keyboard row) to toggle.\nEnemies will ignore you except scripted ones (rats ...)." } }; // Prepare array of sliders for ImGui static SliderFix2 sliders[2];