Skip to content

Commit

Permalink
vvvvvvv
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSillyDoggo committed Aug 17, 2024
1 parent a1a15e1 commit ee61067
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.6.0

- Fixed Transparent BG not working on apple devices
- Added **Ball Rotation Bug**

# 1.5.9

- Added **Gold User Coins**
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": "3.4.0",
"version": "v1.5.9",
"version": "v1.6.0",
"gd": {
"win": "2.206",
"android": "2.206",
Expand Down
2 changes: 2 additions & 0 deletions src/Client/ClientSetup.h
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,8 @@ class ClientUtils
cosmetic->modules.push_back(new Module("Gold User Coins", "gold-user-coins", "Makes user coins appear as if they are gold robtop coins"));
cosmetic->modules.push_back(new Module("No Ship Fire", "no-ship-fire", "Hides the fire behind the ship while it's flying"));

cosmetic->modules.push_back(new Module("Ball Rotation Bug", "ball-rotation-bug", "EMULATES the old rotation bug when switching gamemodes from the ball"));


//cosmetic->modules.push_back(new Module("No Camera Movement", "no-camera", "Disables camera movements that are made with <cl>triggers</c>"));
//cosmetic->modules.push_back(new Module("No Player Rotation", "no-plr-rot", "Disables Player Rotation :3\nIt looks ugly imo but you do you"));
Expand Down
2 changes: 2 additions & 0 deletions src/Hacks/BallRotation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ class $modify (PlayerObject)
this->runAction(CCEaseOut::create(CCRotateBy::create(0.5f, 360 - this->getRotation()), 2));
}
}

QOLMOD_MOD_ALL_HOOKS("ball-rotation-bug")
};

0 comments on commit ee61067

Please sign in to comment.