Skip to content

Commit 67d138d

Browse files
committed
STUB: Added patch flag "HasEasyRpgExtensions" for new commands
1 parent 341a497 commit 67d138d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/player.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,11 @@ namespace Player {
287287
*/
288288
bool IsPatchManiac();
289289

290+
/**
291+
* FIXME: This is just a STUB implementation (HasEasyRpgExtensions is a planned feature that is not part of the main branch yet)
292+
*/
293+
bool HasEasyRpgExtensions();
294+
290295
/**
291296
* @return True when Ineluki Key Patch is active
292297
*/
@@ -481,6 +486,10 @@ inline bool Player::IsPatchManiac() {
481486
return game_config.patch_maniac.Get() > 0;
482487
}
483488

489+
inline bool Player::HasEasyRpgExtensions() {
490+
return true;
491+
}
492+
484493
inline bool Player::IsPatchKeyPatch() {
485494
return game_config.patch_key_patch.Get();
486495
}

0 commit comments

Comments
 (0)