We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In vanilla, villagers in minecarts/boats that get killed by zombies are converted to zombie villagers that are also in the minecart/boat.
That behavior is not mirrored by this plugin.
Villager in minecart getting attacked:
Free zombie villager after getting converted:
The text was updated successfully, but these errors were encountered:
a possible solution would be to check if tVillager.isInsideVehicle and if so, Entity vehicle = tVillager.getVehicle and vehicle.addPassenger(zVillager) after removing the old villager from the vehicle.
tVillager.isInsideVehicle
Entity vehicle = tVillager.getVehicle
vehicle.addPassenger(zVillager)
I don't have the means to implement and test it right now, but by looking at the decompiled source for minecraft, it does something similar.
Sorry, something went wrong.
Fixed in #11
Fix MarioFinale#10 for baby villagers
fa34a38
Successfully merging a pull request may close this issue.
In vanilla, villagers in minecarts/boats that get killed by zombies are converted to zombie villagers that are also in the minecart/boat.
That behavior is not mirrored by this plugin.
Villager in minecart getting attacked:
Free zombie villager after getting converted:
The text was updated successfully, but these errors were encountered: