Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #366 from RayDeeUx/geode
Browse files Browse the repository at this point in the history
Fix: tidy things up
  • Loading branch information
maxnut authored May 6, 2024
2 parents 9868bd4 + 68625cb commit 181ab12
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mod.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"geode": "2.0.0",
"geode": "2.0.0-beta.25",
"gd": {
"win": "2.204"
},
Expand All @@ -22,7 +22,7 @@
"dependencies": [
{
"id": "geode.node-ids",
"version": ">=v1.7.1",
"version": ">=v1.9.1",
"importance": "required"
}
]
Expand Down
2 changes: 2 additions & 0 deletions src/Hacks/EndLevelLayerInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ class $modify(EndLevelLayer)
);
noclipAccuracyLabelELL->limitLabelWidth(180.f, .8f, .5f);
noclipAccuracyLabelELL->setPosition({ textPosition.x + 80.f, textPosition.y + 15.f });
noclipAccuracyLabelELL->setID("noclip-accuracy-label"_spr);
layer->addChild(noclipAccuracyLabelELL);

auto noclipDeathsLabelELL = CCLabelBMFont::create(
Expand All @@ -246,6 +247,7 @@ class $modify(EndLevelLayer)
);
noclipDeathsLabelELL->limitLabelWidth(180.f, .8f, .5f);
noclipDeathsLabelELL->setPosition({ textPosition.x + 80.f, textPosition.y - 15.f });
noclipDeathsLabelELL->setID("noclip-deaths-label"_spr);
layer->addChild(noclipDeathsLabelELL);
}
};

0 comments on commit 181ab12

Please sign in to comment.