mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-08-10 08:15:27 +02:00
6
.travis.yml
Executable file
6
.travis.yml
Executable file
@@ -0,0 +1,6 @@
|
|||||||
|
language: java
|
||||||
|
jdk:
|
||||||
|
- oraclejdk7
|
||||||
|
- openjdk7
|
||||||
|
- openjdk6
|
||||||
|
script: "mvn clean install"
|
@@ -246,7 +246,12 @@ public class Mining {
|
|||||||
|
|
||||||
case LAPIS_ORE:
|
case LAPIS_ORE:
|
||||||
if (config.getLapisDoubleDropsEnabled()) {
|
if (config.getLapisDoubleDropsEnabled()) {
|
||||||
|
try {
|
||||||
item = (new MaterialData(Material.INK_SACK, DyeColor.BLUE.getDyeData())).toItemStack(1);
|
item = (new MaterialData(Material.INK_SACK, DyeColor.BLUE.getDyeData())).toItemStack(1);
|
||||||
|
}
|
||||||
|
catch(Exception e) {
|
||||||
|
item = (new MaterialData(Material.INK_SACK, (byte) 4)).toItemStack(1);
|
||||||
|
}
|
||||||
|
|
||||||
Misc.dropItems(location, item, 4);
|
Misc.dropItems(location, item, 4);
|
||||||
Misc.randomDropItems(location, item, 50, 4);
|
Misc.randomDropItems(location, item, 50, 4);
|
||||||
|
Reference in New Issue
Block a user