Skip to content

Commit 10a57f3

Browse files
committed
asdyfgsaydfgearsdafhsuiadrhfruiardsofhaifhdsaiuearsdf
1 parent 6fa6d3f commit 10a57f3

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# 1.7.5
22

3+
- Fixed December Menu Snow not working
4+
- Fixed Unlock Gauntlets not working in some cases
5+
- Fixed rare crash on completing levels
36
- Added API for mod developers to add tabs to the QOLMod UI
47

58
# 1.7.5-beta.6

src/Client/Client.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ bool Client::handleKeybinds(enumKeyCodes key, bool isDown, bool isRepeatedKey)
5858

5959
bool Client::useImGuiUI()
6060
{
61-
return true;
62-
6361
if (LaunchArgs::get()->hasLaunchArg("--qolmod:use-imgui-ui"))
6462
return true;
6563

@@ -393,4 +391,4 @@ void Client::loadImGuiTheme(std::string theme)
393391
THEME_COLOUR(NavWindowingHighlight);
394392
THEME_COLOUR(NavWindowingDimBg);
395393
THEME_COLOUR(ModalWindowDimBg);
396-
}
394+
}

src/Client/ClientSetup.h

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,8 +556,15 @@ class ClientUtils
556556

557557
Client::GetModule("menu-bg-blur")->setIncompatible("Blur BG is temporarily disabled because i broke it :(.");
558558

559-
if (!Loader::get()->getInstalledMod("geode.node-ids") || !Loader::get()->getInstalledMod("geode.node-ids")->isEnabled())
559+
if (auto nodeIDs = Loader::get()->getInstalledMod("geode.node-ids"))
560+
{
561+
if (!nodeIDs->isOrWillBeEnabled())
562+
Client::GetModule("unlock-gauntlets")->setIncompatible("This mod requires the <cc>Node IDs</c> mod to be enabled!");
563+
}
564+
else
565+
{
560566
Client::GetModule("unlock-gauntlets")->setIncompatible("This mod requires the <cc>Node IDs</c> mod to be installed!");
567+
}
561568
}
562569

563570
#pragma endregion

src/Hacks/DecemberSnow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class $modify (MenuLayer)
1414
std::time_t currentTime = std::time(nullptr);
1515
std::tm* localTime = std::localtime(&currentTime);
1616

17-
if (localTime->tm_mon == 12)
17+
if (localTime->tm_mon + 1 == 12)
1818
{
1919
auto snow = CCParticleSnow::create();
2020
snow->setID("snow"_spr);

0 commit comments

Comments
 (0)