Skip to content

Commit

Permalink
Merge pull request #889 from VolmitSoftware/Development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
NextdoorPsycho authored Sep 9, 2022
2 parents 17df92a + cec5023 commit 8f7b54a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {
id "de.undercouch.download" version "5.0.1"
}

version '2.2.16-1.19.2' // Needs to be version specific
version '2.2.17-1.19.2' // Needs to be version specific
def nmsVersion = "1.19.2" //[NMS]
def apiVersion = '1.19'
def specialSourceVersion = '1.11.0' //[NMS]
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/volmit/iris/engine/IrisWorldManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ public void onBlockBreak(BlockBreakEvent e) {
}
});

KList<ItemStack> d = new KList<>();
/*KList<ItemStack> d = new KList<>();
IrisBiome b = getEngine().getBiome(e.getBlock().getLocation().clone().subtract(0, getEngine().getWorld().minHeight(), 0));
List<IrisBlockDrops> dropProviders = filterDrops(b.getBlockDrops(), e, getData());
Expand All @@ -642,7 +642,7 @@ public void onBlockBreak(BlockBreakEvent e) {
if(d.isNotEmpty()) {
World w = e.getBlock().getWorld();
J.s(() -> d.forEach(item -> w.dropItemNaturally(e.getBlock().getLocation().clone().add(.5, .5, .5), item)));
}
}*/
}
}

Expand Down

0 comments on commit 8f7b54a

Please sign in to comment.