Skip to content

Commit ea43218

Browse files
committed
regrade some options silliness
1 parent e60eecd commit ea43218

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/hooks/obstructive/FakeDeath.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ static auto const o = Option::create(THIS_ID)
1313
->setName("Fake Death")
1414
->setDescription("The player's death effect will show without dying.\n<cl>suggested by DragonixGD</c>")
1515
->setCategory(category::obstructive)
16-
->setSillyTier(SillyTier::Medium)
16+
->setSillyTier(SillyTier::Low)
1717
->autoRegister();
1818

1919
class $modify(FakeDeathPlayLayer, PlayLayer) {

src/hooks/obstructive/Friends.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ static auto const o = Option::create(THIS_ID)
1313
->setName("Friends")
1414
->setDescription("Random friends fly across your screen while you play a level!\n<cl>created by Cheeseworks</c>")
1515
->setCategory(category::obstructive)
16-
->setSillyTier(SillyTier::Medium)
16+
->setSillyTier(SillyTier::Low)
1717
->autoRegister();
1818

1919
static constexpr auto s_friends = std::to_array<const char*>({
@@ -84,7 +84,7 @@ class $modify(FriendsPlayLayer, PlayLayer) {
8484
};
8585

8686
void scheduleNextFriend() {
87-
auto delay = rng::get(2.5f);
87+
auto delay = rng::get(0.875f);
8888
log::trace("Friend will visit again after {} seconds", delay);
8989

9090
scheduleOnce(schedule_selector(FriendsPlayLayer::showAFriend), delay);

src/hooks/randoms/ClickSpeed.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ using namespace horrible::prelude;
1111

1212
static auto const o = Option::create(THIS_ID)
1313
->setName("Click Player Speed")
14-
->setDescription("Randomly increases or decreases the player speed everytime you jump.\n<cl>suggested by KGplayerA</c>")
14+
->setDescription("Randomly increases or decreases the player velocity everytime you jump.\n<cl>suggested by KGplayerA</c>")
1515
->setCategory(category::randoms)
16-
->setSillyTier(SillyTier::Medium)
16+
->setSillyTier(SillyTier::Low)
1717
->autoRegister();
1818

1919
class $modify(ClickSpeedPlayerObject, PlayerObject) {

src/hooks/randoms/TimewarpJump.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ static auto const o = Option::create(THIS_ID)
1313
->setName("Timewarp Jump")
1414
->setDescription("When you jump, there's a chance time will briefly slow down or speed up.\n<cl>suggested by KGplayerA</c>")
1515
->setCategory(category::randoms)
16-
->setSillyTier(SillyTier::Low)
16+
->setSillyTier(SillyTier::Medium)
1717
->autoRegister();
1818

1919
class $modify(TimewarpJumpGJBaseGameLayer, GJBaseGameLayer) {

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ static std::vector<std::weak_ptr<Hook>> s_floatingBtnHooks;
2020
#define HORRIBLE_HOOK_INTERNAL(hookVector, settingId) \
2121
static void onModify(auto& self) { \
2222
utils::StringMap<std::shared_ptr<Hook>>& hooks = self.m_hooks; \
23-
auto enable = mod->getSettingValue<bool>(settingId); \
23+
auto enable = Mod::get()->getSettingValue<bool>(settingId); \
2424
\
2525
for (auto& hook : hooks | std::views::values) { \
2626
hook->setAutoEnable(enable); \

0 commit comments

Comments
 (0)