3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 04:50:05 +01:00

SPIGOT-4020: Fix DustOptions colouring

Dieser Commit ist enthalten in:
md_5 2018-07-18 16:40:31 +10:00
Ursprung 15036eb75b
Commit b9fd5c60e9

Datei anzeigen

@ -136,7 +136,7 @@ public enum CraftParticle {
if (particle.getDataType() == Particle.DustOptions.class) {
Particle.DustOptions data = (Particle.DustOptions) obj;
Color color = data.getColor();
return new ParticleParamRedstone(color.getRed(), color.getGreen(), color.getBlue(), data.getSize());
return new ParticleParamRedstone(color.getRed() / 255.0f, color.getGreen() / 255.0f, color.getBlue() / 255.0f, data.getSize());
}
throw new IllegalArgumentException(particle.getDataType().toString());
}