mirror of
https://github.com/PikaMug/Quests.git
synced 2024-11-22 10:36:09 +01:00
Add Horse to tameable mobs, fixes #49
This commit is contained in:
parent
b3e61a50a2
commit
58c16ba2ba
@ -3860,14 +3860,10 @@ public class Quests extends JavaPlugin implements ConversationAbandonedListener,
|
||||
List<Integer> mobAmounts = config.getIntegerList("quests." + questName + ".stages.ordered." + s2 + ".mob-tame-amounts");
|
||||
|
||||
for (String mob : mobs) {
|
||||
|
||||
if (mob.equalsIgnoreCase("Wolf") || mob.equalsIgnoreCase("Ocelot") || mob.equalsIgnoreCase("Horse")) {
|
||||
|
||||
if (mob.equalsIgnoreCase("Wolf")) {
|
||||
|
||||
oStage.mobsToTame.put(EntityType.WOLF, mobAmounts.get(mobs.indexOf(mob)));
|
||||
|
||||
} else if (mob.equalsIgnoreCase("Ocelot")) {
|
||||
|
||||
oStage.mobsToTame.put(EntityType.OCELOT, mobAmounts.get(mobs.indexOf(mob)));
|
||||
oStage.mobsToTame.put(EntityType.valueOf(mob.toUpperCase()), mobAmounts.get(mobs.indexOf(mob)));
|
||||
|
||||
} else {
|
||||
stageFailed("" + mob + " inside mobs-to-tame: inside Stage " + s2 + " of Quest " + quest.name + " is not a valid tameable mob!");
|
||||
|
Loading…
Reference in New Issue
Block a user