mirror of
https://github.com/PlayPro/CoreProtect.git
synced 2024-11-21 01:13:45 +08:00
Fixed Villager type not being rolled back correctly in MC 1.21+
This commit is contained in:
parent
fda87e2f6a
commit
888df067f9
@ -338,7 +338,7 @@ public class EntityUtil {
|
||||
}
|
||||
}
|
||||
else if (count == 1) {
|
||||
if (abstractVillager instanceof Villager && value instanceof Villager.Type) {
|
||||
if (abstractVillager instanceof Villager && (value instanceof Villager.Type || value instanceof String)) {
|
||||
Villager villager = (Villager) abstractVillager;
|
||||
if (value instanceof String) {
|
||||
value = BukkitAdapter.ADAPTER.getRegistryValue((String) value, Villager.Type.class);
|
||||
|
Loading…
Reference in New Issue
Block a user