yay github!

This commit is contained in:
ItsBlackGear 2022-07-10 00:26:56 -04:00
parent e3e26d810a
commit de1f058dfb
2 changed files with 2 additions and 4 deletions

View file

@ -77,9 +77,7 @@ public class TadpoleBucketItem extends BucketItem {
components.add(new TranslatableComponent(TropicalFish.getFishTypeName(variant)).withStyle(format));
MutableComponent component = new TranslatableComponent(base);
if (!base.equals(pattern)) {
component.append(", ").append(new TranslatableComponent(pattern));
}
if (!base.equals(pattern)) component.append(", ").append(new TranslatableComponent(pattern));
component.withStyle(format);
components.add(component);

View file

@ -33,4 +33,4 @@ public class ParticleUtils {
ServerLevel server = level instanceof ServerLevel side ? side : null;
if (server != null) server.sendParticles(effect, x, y, z, 1, xVelocity, yVelocity, zVelocity, 0.0D);
}
}
}