Skip to content

Commit

Permalink
STUB: Added patch flag "HasEasyRpgExtensions" for new commands
Browse files Browse the repository at this point in the history
  • Loading branch information
florianessl committed May 24, 2024
1 parent 341a497 commit 67d138d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/player.h
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,11 @@ namespace Player {
*/
bool IsPatchManiac();

/**
* FIXME: This is just a STUB implementation (HasEasyRpgExtensions is a planned feature that is not part of the main branch yet)
*/
bool HasEasyRpgExtensions();

/**
* @return True when Ineluki Key Patch is active
*/
Expand Down Expand Up @@ -481,6 +486,10 @@ inline bool Player::IsPatchManiac() {
return game_config.patch_maniac.Get() > 0;
}

inline bool Player::HasEasyRpgExtensions() {
return true;
}

inline bool Player::IsPatchKeyPatch() {
return game_config.patch_key_patch.Get();
}
Expand Down

0 comments on commit 67d138d

Please sign in to comment.