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 Ragnarock Axe typo #158

Merged
merged 1 commit into from
Feb 18, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/main/kotlin/me/odinmain/features/ModuleManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ object ModuleManager {

//skyblock
NoCursorReset, AutoSprint, BlazeAttunement, ChatCommands, DeployableTimer, DianaHelper, ArrowHit,
RagnarokAxe, MobSpawn, Splits, WardrobeKeybinds, InvincibilityTimer, ItemsHighlight, PlayerDisplay,
RagnarockAxe, MobSpawn, Splits, WardrobeKeybinds, InvincibilityTimer, ItemsHighlight, PlayerDisplay,
FarmKeys, PetKeybinds, CommandKeybinds, SpringBoots, AbilityTimers,

// kuudra
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import me.odinmain.features.settings.impl.BooleanSetting
import me.odinmain.utils.skyblock.*
import net.minecraft.network.play.server.S29PacketSoundEffect

object RagnarokAxe : Module(
object RagnarockAxe : Module(
name = "Rag Axe",
description = "Tracks rag axe cooldowns.",
category = Category.SKYBLOCK
Expand All @@ -27,7 +27,7 @@ object RagnarokAxe : Module(
if (alert) PlayerUtils.alert("§aCasted Rag Axe")
val strengthGain = ((mc.thePlayer?.heldItem?.getSBStrength ?: return@onPacket) * 1.5).toInt()
if (strengthGainedMessage) modMessage("§7Gained strength: §4$strengthGain")
if (announceStrengthGained) partyMessage("Gained strength from RagnarokAxe: $strengthGain")
if (announceStrengthGained) partyMessage("Gained strength from Ragnarock Axe: $strengthGain")
}
}
}
Loading