Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Dungeon Flow Events: #36

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on Oct 4, 2023

  1. Added Dungeon Flow Events:

    - Enter dungeon
    - Dungeon started
    - Dungeon ended
    - Left dungeon
    - Wither key obtained
    - Wither door opened
    - Blood key obtained
    - Blood door opened
    - Entered boss fight
    BuildTools committed Oct 4, 2023
    Configuration menu
    Copy the full SHA
    6481634 View commit details
    Browse the repository at this point in the history
  2. Reviewed the changes suggested by Unex:

    - Changed "if(!isInDungeon()) return;" to be "if(isInDungeon()) {...}"
    - Moved DungeonUtils to io.github.skyblockcore.dungeons
    - Added name of boss to EnteredBossfightCallback
    - Added score to DungeonEndedCallback
    - Added the class (Healer, Mage, Berserk, Archer, Tank) to DungeonStartedCallback
    BuildTools committed Oct 4, 2023
    Configuration menu
    Copy the full SHA
    e729f0b View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2023

  1. Moved io.github.skyblockcore.dungeons.DungeonUtils to io.github.skybl…

    …ockcore.Dungeons, as per Unex's suggestion.
    BuildTools committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    13787e4 View commit details
    Browse the repository at this point in the history