Skip to content

Commit

Permalink
i
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSillyDoggo committed Feb 8, 2024
1 parent 726f417 commit 3061ed4
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
- Fixed Level Edit breaking level page
- Added Force Trail On and Force Trail Off
- Added No Camera Shake
- Added Force Platformer On Android
- Moved Confirm Practice and Confirm Restart From Universal to Level
- Added Menu Animations, From Left, From Right, From Top, From Bottom and Scale
- Added ~~Herobrine~~ Zulguroth

Expand Down
2 changes: 1 addition & 1 deletion mod.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"geode": "2.0.0",
"version": "v1.1.2",
"version": "v1.1.3",
"gd": {
"win": "2.204",
"android": "*"
Expand Down
2 changes: 1 addition & 1 deletion src/Client/AndroidUI.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class AndroidUI : public cocos2d::CCLayerColor {
{
auto btn = static_cast<CCMenuItemSprite*>(sender);

if (btn->getTag() == 5)
if (btn->getTag() == 5 + 1)
{
#ifdef GEODE_IS_ANDROID

Expand Down
2 changes: 0 additions & 2 deletions src/Client/ClientSetup.h
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,6 @@ class ClientUtils

static void SetupVariables(bool android)
{
return;

if (android)
Client::instance->windows.push_back(new Variables());

Expand Down
4 changes: 3 additions & 1 deletion src/Client/Window.h
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,8 @@ class Variables : public Window
{
log::info("button");

PlayLayer::get()->m_player1->toggleDartMode(true, true);

//PlayLayer::get()->m_player1->playerDestroyed(false);

//PlayLayer::get()->destroyPlayer(PlayLayer::get()->m_player1, GameObject::createWithKey(0));
Expand Down Expand Up @@ -484,7 +486,7 @@ class Variables : public Window
back->setOpacity(100);

auto btn = CCMenuItemSpriteExtra::create(back, menu, menu_selector(Variables::onChangeMode));
menu->addChild(btn);
//menu->addChild(btn);
}
};

Expand Down

0 comments on commit 3061ed4

Please sign in to comment.