diff --git a/civcraft/bin/com/avrgaming/civcraft/components/ConsumeLevelComponent.class b/civcraft/bin/com/avrgaming/civcraft/components/ConsumeLevelComponent.class index e2765b671..f3b839ded 100644 Binary files a/civcraft/bin/com/avrgaming/civcraft/components/ConsumeLevelComponent.class and b/civcraft/bin/com/avrgaming/civcraft/components/ConsumeLevelComponent.class differ diff --git a/civcraft/bin/com/avrgaming/civcraft/config/ConfigTownUpgrade.class b/civcraft/bin/com/avrgaming/civcraft/config/ConfigTownUpgrade.class index 2e16ef32a..a81c34640 100644 Binary files a/civcraft/bin/com/avrgaming/civcraft/config/ConfigTownUpgrade.class and b/civcraft/bin/com/avrgaming/civcraft/config/ConfigTownUpgrade.class differ diff --git a/civcraft/bin/com/avrgaming/civcraft/threading/tasks/QuarryAsyncTask.class b/civcraft/bin/com/avrgaming/civcraft/threading/tasks/QuarryAsyncTask.class index ff69b6bb7..82cbf6e4f 100644 Binary files a/civcraft/bin/com/avrgaming/civcraft/threading/tasks/QuarryAsyncTask.class and b/civcraft/bin/com/avrgaming/civcraft/threading/tasks/QuarryAsyncTask.class differ diff --git a/civcraft/bin/plugin.yml b/civcraft/bin/plugin.yml index 26813b7ec..857a87d6e 100644 --- a/civcraft/bin/plugin.yml +++ b/civcraft/bin/plugin.yml @@ -1,7 +1,7 @@ name: CivCraft main: com.avrgaming.civcraft.main.CivCraft softdepends: [TitleAPI] -version: 1.76 +version: 1.76.1 commands: town: diff --git a/civcraft/data/structures.yml b/civcraft/data/structures.yml index 39f947b97..bbf0e526c 100644 --- a/civcraft/data/structures.yml +++ b/civcraft/data/structures.yml @@ -579,7 +579,7 @@ structures: value: '25.0' - id: s_capitol - template: capitol #XXX misspelt =( but its easier to leave it that way. + template: capitol template_y_shift: 0 displayName: Capitol require_tech: diff --git a/civcraft/src/com/avrgaming/civcraft/config/ConfigTownUpgrade.java b/civcraft/src/com/avrgaming/civcraft/config/ConfigTownUpgrade.java index 447481c6b..5e4ce5ab8 100644 --- a/civcraft/src/com/avrgaming/civcraft/config/ConfigTownUpgrade.java +++ b/civcraft/src/com/avrgaming/civcraft/config/ConfigTownUpgrade.java @@ -262,9 +262,9 @@ public void processAction(Town town) throws CivException { } break; case "set_quarry_level": - if (town.saved_trommel_level < Integer.valueOf(args[1].trim())) + if (town.saved_quarry_level < Integer.valueOf(args[1].trim())) { - town.saved_trommel_level = Integer.valueOf(args[1].trim()); + town.saved_quarry_level = Integer.valueOf(args[1].trim()); } boolean didUpgradeQuarry = false; for (Structure structure : town.getStructures()) { diff --git a/civcraft/src/plugin.yml b/civcraft/src/plugin.yml index 26813b7ec..857a87d6e 100644 --- a/civcraft/src/plugin.yml +++ b/civcraft/src/plugin.yml @@ -1,7 +1,7 @@ name: CivCraft main: com.avrgaming.civcraft.main.CivCraft softdepends: [TitleAPI] -version: 1.76 +version: 1.76.1 commands: town: