From b71728e5038f5b51736f80c96f02aa0f211c2c52 Mon Sep 17 00:00:00 2001 From: jay Date: Mon, 19 Apr 2021 13:25:04 +0500 Subject: [PATCH] feat(mover): :sparkles: add Mule to ridable mobs --- lib/plugins/mover.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugins/mover.js b/lib/plugins/mover.js index e147b13..9d864f0 100644 --- a/lib/plugins/mover.js +++ b/lib/plugins/mover.js @@ -143,7 +143,7 @@ function away(entity = bot.nearestEntity(), invertInvert = true, dynamic = true, function ride(entity) { entity = entity?.entity || entity - const ridableMobs = ["Horse", "Donkey", "Pig", "Strider"] + const ridableMobs = ["Horse", "Donkey", "Pig", "Strider", "Mule"] const vehicle = entity && typeof entity !== "string" ? entity : bot.nearestEntity(e => { if (typeof entity === "string") return e.name === entity const maybeRidableMob = e.mobType?.split(" ")