Fix some 1.12.2 textures

This commit is contained in:
Mike Primm 2018-08-22 07:48:35 -05:00
parent 8d76c70f21
commit f53b753cb5
3 changed files with 6 additions and 5 deletions

View File

@ -10,11 +10,12 @@ texturefile:id=chest,filename=assets/minecraft/textures/entity/chest/normal.png,
texturefile:id=enderchest,filename=assets/minecraft/textures/entity/chest/ender.png,format=CHEST
texturefile:id=bigchest,filename=assets/minecraft/textures/entity/chest/normal_double.png,format=BIGCHEST
texturefile:id=sign,filename=assets/minecraft/textures/entity/sign.png,format=SIGN
texturefile:id=skeleton,filename=assets/minecraft/textures/entity/skeleton/skeleton.png,format=SKIN
texturefile:id=zombie,filename=assets/minecraft/textures/entity/zombie/zombie.png,format=SKIN
texturefile:id=char,filename=assets/minecraft/textures/entity/steve.png,format=SKIN
texturefile:id=creeper,filename=assets/minecraft/textures/entity/creeper/creeper.png,format=SKIN
texturefile:id=wither,filename=assets/minecraft/textures/entity/wither/wither.png,format=SKIN
texturefile:id=skeleton,filename=mob/skeleton.png,format=SKIN
texturefile:id=zombie,filename=mob/zombie.png,format=SKIN
texturefile:id=char,filename=mob/char.png,format=SKIN
texturefile:id=creeper,filename=mob/creeper.png,format=SKIN
texturefile:id=wither,filename=mob/skeleton_wither.png,format=SKIN
texturefile:id=trapchest,filename=assets/minecraft/textures/entity/chest/trapped.png,format=CHEST
texturefile:id=bigtrapchest,filename=assets/minecraft/textures/entity/chest/trapped_double.png,format=BIGCHEST
texturefile:id=endportal,filename=assets/minecraft/textures/environment/end_sky.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -152,7 +152,7 @@ public abstract class BukkitVersionHelper {
}
for (int gidx = 0; gidx < DynmapBlockState.getGlobalIndexMax(); gidx++) {
DynmapBlockState bs = DynmapBlockState.getStateByGlobalIndex(gidx);
Log.info(gidx + ":" + bs.toString() + ", gidx=" + bs.globalStateIndex + ", sidx=" + bs.stateIndex);
Log.verboseinfo(gidx + ":" + bs.toString() + ", gidx=" + bs.globalStateIndex + ", sidx=" + bs.stateIndex);
}
}
/**