diff --git a/data/file_list.yml b/data/file_list.yml index 607a4630..7c013376 100644 --- a/data/file_list.yml +++ b/data/file_list.yml @@ -123644,20 +123644,20 @@ Player/PlayerJudgeForceLand.o: label: - _ZN20PlayerJudgeForceLandC1EPK6IJudgePK13PlayerTrigger - _ZN20PlayerJudgeForceLandC2EPK6IJudgePK13PlayerTrigger - status: Matching + status: NotDecompiled - offset: 0x4595dc size: 64 label: _ZNK20PlayerJudgeForceLand5judgeEv - status: Matching + status: NotDecompiled - offset: 0x45961c size: 4 label: _ZN20PlayerJudgeForceLand5resetEv - status: Matching + status: NotDecompiled lazy: true - offset: 0x459620 size: 4 label: _ZN20PlayerJudgeForceLand6updateEv - status: Matching + status: NotDecompiled lazy: true Player/PlayerJudgeForceRolling.o: '.text': diff --git a/src/Player/PlayerJudgeForceLand.cpp b/src/Player/PlayerJudgeForceLand.cpp index f97ec563..9f66e5da 100644 --- a/src/Player/PlayerJudgeForceLand.cpp +++ b/src/Player/PlayerJudgeForceLand.cpp @@ -3,10 +3,10 @@ #include "Player/PlayerTrigger.h" #include "Util/JudgeUtil.h" -PlayerJudgeForceLand::PlayerJudgeForceLand(const IJudge* judgeLongFall, - const PlayerTrigger* trigger) - : mJudgeLongFall(judgeLongFall), mTrigger(trigger) {} +//PlayerJudgeForceLand::PlayerJudgeForceLand(const IJudge* judgeLongFall, const PlayerTrigger* trigger) {} -bool PlayerJudgeForceLand::judge() const { - return rs::isJudge(mJudgeLongFall) || mTrigger->isOn(PlayerTrigger::EActionTrigger_val11); -} +//void PlayerJudgeForceLand::reset() {} + +//void PlayerJudgeForceLand::update() {} + +//bool PlayerJudgeForceLand::judge() const {} diff --git a/src/Player/PlayerJudgeForceLand.h b/src/Player/PlayerJudgeForceLand.h index 404b933a..e34ae255 100644 --- a/src/Player/PlayerJudgeForceLand.h +++ b/src/Player/PlayerJudgeForceLand.h @@ -8,10 +8,8 @@ class PlayerJudgeForceLand : public IJudge { public: PlayerJudgeForceLand(const IJudge* judgeLongFall, const PlayerTrigger* trigger); - void reset() override {} - - void update() override {} - + void reset() override; + void update() override; bool judge() const override; private: