Skip to content

Commit

Permalink
ill never beat an extreme
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSillyDoggo committed Dec 17, 2024
1 parent db5739a commit ddf1879
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0

- name: Build the mod
uses: geode-sdk/build-geode-mod@main
Expand Down
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# 1.7.7

- Imrpoved label reordering
- Improved label reordering
- Fixed Crash using Chest Unlock Bypass
- Added **Gold Chest Bypass** to Chest Unlock Bypass
- Added **Localization / Translations**!!
-- The language can be changed in the **Config** tab of the mod menu
Expand Down
4 changes: 0 additions & 4 deletions src/Client/Client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,14 +186,10 @@ std::vector<std::filesystem::path> Client::getLanguages()
{
std::vector<std::filesystem::path> files;

log::info("asdf: {}", Mod::get()->getResourcesDir());

for (auto file : std::filesystem::directory_iterator(Mod::get()->getResourcesDir()))
{
auto p = file.path().filename();

log::info("file: {}", file.path());

if (p.has_extension() && p.extension().string() == ".json")
{
files.push_back(file);
Expand Down
2 changes: 1 addition & 1 deletion src/UI/TransLabelBMFont.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ void TransLabelBMFont::updateTTFVisible()
if (!label->getConfiguration()->getCharacterSet()->contains(as<int>(letter)))
{
useTtf = true;
log::debug("Tripped at: {}, in string: {}", letter, text);
log::debug("Tripped at: {}, in string: {}, cset: {}, letter: {}", letter, text, label->getConfiguration()->getCharacterSet()->size(), as<int>(letter));
break;
}
}
Expand Down

0 comments on commit ddf1879

Please sign in to comment.