Compare commits

...

2 Commits

Author SHA1 Message Date
Christian Koop 5e5fe94323
Merge pull request #8 from xsmeths/development
change fuel sharing logic - now it will burn long enough to cook
2024-04-05 19:08:42 +02:00
xsmeths 3bd2ab6f5f change fuel sharing logic - now it will burn long enough to cook something
increase burning time from 100 to 300 ticks
2024-04-03 20:53:09 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ public class FurnaceTask extends BukkitRunnable {
org.bukkit.block.Furnace furnaceBlock = ((org.bukkit.block.Furnace) block.getState());
if (furnaceBlock.getBurnTime() == 0) {
furnaceBlock.setBurnTime((short) 100);
furnaceBlock.setBurnTime((short) 300);
furnaceBlock.update();
if (this.doParticles) {