Skip to content

Commit

Permalink
sd
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSillyDoggo committed Jan 22, 2024
1 parent c215686 commit a48061c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Client/ClientSetup.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class ClientUtils
//cosmetic->modules.push_back(new Module("Hide Endscreen BTN", "end-screen", "Adds an arrow to hide the end screen"));
//cosmetic->modules.push_back(new Module("No Transition", "no-trans", "Disables the fade scene transitions"));
cosmetic->modules.push_back(new Module("No Rotation", "no-rot", "Disables ALL rotation on ALL objects. This can make some levels impossible"));
cosmetic->modules.push_back(new Module("No Player Rotation", "no-plr-rot", "Disables Player Rotation :3\nIt looks ugly but you do you"));
//cosmetic->modules.push_back(new Module("No Player Rotation", "no-plr-rot", "Disables Player Rotation :3\nIt looks ugly but you do you"));

Client::instance->windows.push_back(cosmetic);
}
Expand Down
3 changes: 2 additions & 1 deletion src/Hacks/NoRotation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

using namespace geode::prelude;

/*
class $modify (PlayerObject)
{
void setRotation(float r)
Expand All @@ -15,7 +16,7 @@ class $modify (PlayerObject)
PlayerObject::setRotation(r);
}
};

*/
class $modify (CCNode)
{
void setRotation(float r)
Expand Down

0 comments on commit a48061c

Please sign in to comment.