compressed data tree cleanup, streamlining
This commit is contained in:
parent
f76d3c8b89
commit
b52053f5ea
50 changed files with 560 additions and 598 deletions
|
@ -7,7 +7,7 @@ import common.entity.Entity;
|
|||
import common.init.SoundEvent;
|
||||
import common.item.ItemDye;
|
||||
import common.tags.TagObject;
|
||||
import common.tags.TagObjectList;
|
||||
import java.util.List;
|
||||
import common.util.BoundingBox;
|
||||
import common.util.ExtMath;
|
||||
import common.world.World;
|
||||
|
@ -192,7 +192,7 @@ public class EntityFirework
|
|||
{
|
||||
private int fireworkAge;
|
||||
private final EffectRenderer theEffectRenderer;
|
||||
private TagObjectList fireworkExplosions;
|
||||
private List<TagObject> fireworkExplosions;
|
||||
boolean twinkle;
|
||||
|
||||
public StarterFX(World p_i46464_1_, double p_i46464_2_, double p_i46464_4_, double p_i46464_6_, double p_i46464_8_, double p_i46464_10_, double p_i46464_12_, EffectRenderer p_i46464_14_, TagObject p_i46464_15_)
|
||||
|
@ -206,7 +206,7 @@ public class EntityFirework
|
|||
|
||||
if (p_i46464_15_ != null)
|
||||
{
|
||||
this.fireworkExplosions = p_i46464_15_.getObjectList("Explosions");
|
||||
this.fireworkExplosions = p_i46464_15_.getList("Explosions");
|
||||
|
||||
if (this.fireworkExplosions.size() == 0)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue