diff --git a/game/src/main/kotlin/world/gregs/voidps/bot/skill/SkillBot.kts b/game/src/main/kotlin/world/gregs/voidps/bot/skill/SkillBot.kts index bb9beca8a..a8a7386bf 100644 --- a/game/src/main/kotlin/world/gregs/voidps/bot/skill/SkillBot.kts +++ b/game/src/main/kotlin/world/gregs/voidps/bot/skill/SkillBot.kts @@ -1,8 +1,11 @@ package world.gregs.voidps.bot.skill +import world.gregs.voidps.bot.isBot import world.gregs.voidps.engine.client.ui.event.interfaceOpen import world.gregs.voidps.network.client.instruction.InteractDialogue interfaceOpen("dialogue_level_up") { bot -> - bot.instructions.trySend(InteractDialogue(interfaceId = 740, componentId = 3, option = -1)) + if (bot.isBot) { + bot.instructions.trySend(InteractDialogue(interfaceId = 740, componentId = 3, option = -1)) + } } \ No newline at end of file