File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9898
9999 - name: Send Discord webhook
100100 if: ${{ steps.check-discord.outputs.has-nightly-webhook == 'true' }}
101- uses: prevter /discord-webhook@main
101+ uses: BlueWitherer /discord-webhook@main
102102 with:
103103 webhook-url: ${{ secrets.NIGHTLY_WEBHOOK }}
104104 files: |
Original file line number Diff line number Diff line change 4343 uses: BlueWitherer/geode-mod-webhook@main
4444 with:
4545 webhook-url: ${{ steps.check-discord.outputs.webhook-url }}
46+ content: "-# <@&1478754024240054292>" # release alert role
4647 changelog: ${{ steps.publish-release.outputs.changelog }}
4748
4849 publish:
5455 - uses: actions/checkout@v4
5556
5657 - name: Publish to Geode
57- uses: BlueWitherer /release-geode-mod/publish@main
58+ uses: hiimjasmine00 /release-geode-mod/publish@main
5859 with:
5960 token: ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -41,10 +41,10 @@ class $modify(MathPlayLayer, PlayLayer) {
4141 void doQuiz(float) {
4242 auto f = m_fields.self();
4343
44- if (m_isPracticeMode && !m_hasCompletedLevel) {
44+ if (m_isPracticeMode && !m_hasCompletedLevel && !m_playerDied ) {
4545 log::debug("Showing math quiz");
4646
47- if (options::isEnabled(id) && !m_playerDied ) {
47+ if (options::isEnabled(id)) {
4848 if (auto quiz = MathQuiz::create()) {
4949 // handle correct/wrong answer
5050 quiz->setCallback([this](bool correct) {
Original file line number Diff line number Diff line change @@ -38,10 +38,10 @@ class $modify(SpamPlayLayer, PlayLayer) {
3838 };
3939
4040 void doSpam(float) {
41- if (!m_isPracticeMode && !m_hasCompletedLevel) {
41+ if (!m_isPracticeMode && !m_hasCompletedLevel && !m_playerDied ) {
4242 log::debug("Showing spam challenge");
4343
44- if (options::isEnabled(id) && !m_playerDied ) {
44+ if (options::isEnabled(id)) {
4545 if (auto spam = SpamChallenge::create()) {
4646 auto f = m_fields.self();
4747
You can’t perform that action at this time.
0 commit comments