SPIGOT-5748: Add instant effect potion break to the Effect enum

Conversion from Color to integer for the data of the new enum entry
This commit is contained in:
WinX64 2020-05-26 19:34:39 +10:00 committed by md_5
parent d07a78b1f3
commit eb1b19d979
1 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,7 @@ package org.bukkit.craftbukkit;
import net.minecraft.server.Block;
import net.minecraft.server.Item;
import org.apache.commons.lang.Validate;
import org.bukkit.Color;
import org.bukkit.Effect;
import org.bukkit.Material;
import org.bukkit.block.BlockFace;
@ -19,6 +20,9 @@ public class CraftEffect {
case POTION_BREAK:
datavalue = ((Potion) data).toDamageValue() & 0x3F;
break;
case INSTANT_POTION_BREAK:
datavalue = ((Color) data).asRGB();
break;
case RECORD_PLAY:
Validate.isTrue(data == Material.AIR || ((Material) data).isRecord(), "Invalid record type!");
datavalue = Item.getId(CraftMagicNumbers.getItem((Material) data));