mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-09-18 21:54:50 +00:00
25 lines
1.1 KiB
Diff
25 lines
1.1 KiB
Diff
![]() |
--- a/net/minecraft/world/entity/monster/EntitySkeleton.java
|
||
|
+++ b/net/minecraft/world/entity/monster/EntitySkeleton.java
|
||
|
@@ -16,10 +16,10 @@
|
||
|
|
||
|
public class EntitySkeleton extends EntitySkeletonAbstract {
|
||
|
|
||
|
- private static final DataWatcherObject<Boolean> DATA_STRAY_CONVERSION_ID = DataWatcher.a(EntitySkeleton.class, DataWatcherRegistry.BOOLEAN);
|
||
|
+ public static final DataWatcherObject<Boolean> DATA_STRAY_CONVERSION_ID = DataWatcher.a(EntitySkeleton.class, DataWatcherRegistry.BOOLEAN); // PAIL private -> public
|
||
|
public static final String CONVERSION_TAG = "StrayConversionTime";
|
||
|
private int inPowderSnowTime;
|
||
|
- private int conversionTime;
|
||
|
+ public int conversionTime; // PAIL private -> public
|
||
|
|
||
|
public EntitySkeleton(EntityTypes<? extends EntitySkeleton> entitytypes, World world) {
|
||
|
super(entitytypes, world);
|
||
|
@@ -80,7 +80,7 @@
|
||
|
|
||
|
}
|
||
|
|
||
|
- private void a(int i) {
|
||
|
+ public void a(int i) { // PAIL private -> public // PAIL rename startStrayConversion
|
||
|
this.conversionTime = i;
|
||
|
this.entityData.set(EntitySkeleton.DATA_STRAY_CONVERSION_ID, true);
|
||
|
}
|