Map wind charges to shulker bullets instead of llama spit

Spit has gravity by default and a short lifespan
Fixes #868
This commit is contained in:
Nassim Jahnke 2024-08-15 13:10:48 +02:00
parent 4f7acf211b
commit 9ca523620d
No known key found for this signature in database
GPG Key ID: EF6771C01F6EF02F

View File

@ -144,11 +144,11 @@ public final class EntityPacketRewriter1_20_3 extends EntityRewriter<Clientbound
mapTypes();
mapEntityTypeWithData(EntityTypes1_20_3.BREEZE, EntityTypes1_20_3.BLAZE).jsonName();
mapEntityTypeWithData(EntityTypes1_20_3.WIND_CHARGE, EntityTypes1_20_3.LLAMA_SPIT).jsonName();
mapEntityTypeWithData(EntityTypes1_20_3.WIND_CHARGE, EntityTypes1_20_3.SHULKER_BULLET).jsonName();
}
@Override
public EntityType typeFromId(final int type) {
return EntityTypes1_20_3.getTypeFromId(type);
}
}
}