Skip to content

Commit

Permalink
add quick keys mention to restart level desc
Browse files Browse the repository at this point in the history
  • Loading branch information
Cvolton committed Jul 3, 2024
1 parent 294183c commit e5bed53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## v1.6.3

- Fix various issues in PlayLayer
- Restart keybind now requires "Quick Keys" option enabled (like in the vanilla game)

## v1.6.2

Expand Down
4 changes: 2 additions & 2 deletions src/UILayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -373,14 +373,14 @@ struct $modify(UILayer) {
BindManager::get()->registerBindable({
"robtop.geometry-dash/restart-level",
"Restart level",
"Restarts the Level",
"Restarts the Level (needs Quick Keys enabled)",
{ Keybind::create(cocos2d::KEY_R, Modifier::None) },
Category::PLAY, false
});
BindManager::get()->registerBindable({
"robtop.geometry-dash/full-restart-level",
"Full restart level",
"Restarts the level from the beginning",
"Restarts the level from the beginning (needs Quick Keys enabled)",
{ Keybind::create(KEY_R, Modifier::Control) },
Category::PLAY, false
});
Expand Down

0 comments on commit e5bed53

Please sign in to comment.