mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-26 07:06:45 +01:00
Fixed Shake dropping bonemeal from Squids.
Stupid DyeColor enum...
This commit is contained in:
parent
46c31e1abb
commit
443b4a193c
@ -8,6 +8,7 @@ Key:
|
||||
- Removal
|
||||
|
||||
Version 1.3.04-dev
|
||||
= Fixed Shake ability dropping bonemeal instead of ink for squids.
|
||||
! Changed MySQL to reload all player information on reconnection
|
||||
|
||||
Version 1.3.03
|
||||
|
@ -4,7 +4,6 @@ import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.bukkit.DyeColor;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.enchantments.Enchantment;
|
||||
@ -315,7 +314,7 @@ public class Fishing {
|
||||
break;
|
||||
|
||||
case SQUID:
|
||||
m.mcDropItem(loc, new ItemStack(Material.INK_SACK, 1, (short) 0, DyeColor.BLACK.getData()));
|
||||
m.mcDropItem(loc, new ItemStack(Material.INK_SACK, 1, (short) 0, (byte) 0x0));
|
||||
break;
|
||||
|
||||
case ZOMBIE:
|
||||
|
Loading…
Reference in New Issue
Block a user