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

Fix small mistake in calendar mayor check #443

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ object MayorInfo {
) return
if (event.container is ContainerChest) {
val chestName = event.chestName
if (((chestName == "Mayor Jerry" && event.slot.slotNumber == 11) || (chestName == "Calendar and Events" || event.slot.slotNumber == 46)) && event.slot.hasStack) {
if (((chestName == "Mayor Jerry" && event.slot.slotNumber == 11) || (chestName == "Calendar and Events" && event.slot.slotNumber == 46)) && event.slot.hasStack) {
val lore = ItemUtil.getItemLore(event.slot.stack)
if (!lore.contains("§9Perkpocalypse Perks:")) return
val endingIn = lore.find { it.startsWith("§7Next set of perks in") } ?: return
Expand Down Expand Up @@ -184,4 +184,4 @@ data class JerrySession(
val nextSwitch: Long,
val mayor: Mayor,
val perks: List<MayorPerk>
)
)
Loading