Skip to content

Commit e268159

Browse files
author
MrTwiggy
committed
Changed repair tool used for repairing Ore Gin's.
1 parent 079fdc5 commit e268159

File tree

5 files changed

+4
-3
lines changed

5 files changed

+4
-3
lines changed
8 Bytes
Binary file not shown.
-95 Bytes
Binary file not shown.

config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ general:
33
save_cycle: 10
44
max_tiers: 7
55
oregin_upgrade_wand: YELLOW_FLOWER
6-
oregin_activation_wand: GRAVEL
7-
oregin_repair_wand: RED_ROSE
6+
oregin_activation_wand: RED_ROSE
7+
oregin_repair_wand: IRON_SPADE
88
oregin_light_on: REDSTONE_LAMP_ON
99
oregin_light_off: REDSTONE_LAMP_OFF
1010
redstone_activation_enabled: true

src/com/github/MrTwiggy/OreGin/OreGin.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,7 @@ else if (OreGinPlugin.JUNK_DESTRUCTION_ENABLED && OreGinPlugin.JUNK.contains(blo
351351
{
352352
block.setType(Material.AIR);
353353
}
354+
else
354355
{
355356
block.breakNaturally();
356357
}

src/com/github/MrTwiggy/OreGin/OreGinPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ private void periodicSaving()
239239
Bukkit.getServer().getScheduler().scheduleSyncRepeatingTask(this, new Runnable() {
240240
@Override
241241
public void run() {
242-
Bukkit.getLogger().info("Saving OreGin data...");
242+
OreGinPlugin.sendConsoleMessage("Saving OreGin data...");
243243
save(oreGinMan, getOreGinSavesFile());
244244
}
245245
}, (OreGinPlugin.SAVE_CYCLE * OreGinPlugin.TICKS_PER_SECOND * 60),

0 commit comments

Comments
 (0)