Skip to content

Commit

Permalink
added cooldown to llama spit wanf
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildTools committed Feb 11, 2017
1 parent a2917c2 commit a3351e3
Show file tree
Hide file tree
Showing 24 changed files with 256 additions and 259 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<dependency>
<groupId>com.blocktyper</groupId>
<artifactId>blocktyperplugin</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<scope>compile</scope>
</dependency>

Expand Down
7 changes: 6 additions & 1 deletion src/main/java/com/blocktyper/yearmarked/ConfigKey.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,12 @@ public enum ConfigKey {
HOLOGRAPHIC_DISPLAYS_SHOW_DAY_CHANGE_MESSAGE("yearmarked-show-holograms-on-day-change"),

//MISC
SHOW_JOIN_MESSAGE("yearmarked-show-join-message");
SHOW_JOIN_MESSAGE("yearmarked-show-join-message"),


//Llama spit wand
LLAMA_SPIT_WAND_COOL_DOWN("yearmarked-llama-spit-wand.cool-down-sec");
;


private String key;
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/blocktyper/yearmarked/LocalizedMessage.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ public enum LocalizedMessage {
DESCRIPTION_FISHFRYDAY("yearmarked-fishfrytag-description"),
DESCRIPTION_DIAMONDAY("yearmarked-diamonday-description"),
DESCRIPTION_FEATHERSDAY("yearmarked-feathersday-description"),

MARKET_DAY("yearmarked-market-day"),
NOT_MARKET_DAY("yearmarked-not-market-day"),
SOLD_OUT("yearmarked-sold-out"),

MONSOONDAY("yearmarked-monsoonday"),
EARTHDAY("yearmarked-earthday"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;

import com.blocktyper.v1_2_0.BlockTyperListener;
import com.blocktyper.v1_2_0.nbt.NBTItem;
import com.blocktyper.v1_2_1.BlockTyperListener;
import com.blocktyper.v1_2_1.nbt.NBTItem;
import com.blocktyper.yearmarked.items.YMRecipe;

public abstract class YearmarkedListenerBase extends BlockTyperListener {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.blocktyper.yearmarked;

import com.blocktyper.v1_2_0.BlockTyperUtility;
import com.blocktyper.v1_2_1.BlockTyperUtility;
import com.blocktyper.yearmarked.days.listeners.DataMigrationListener_2_0_0;
import com.blocktyper.yearmarked.days.listeners.SendDayInfoListener;
import com.blocktyper.yearmarked.days.listeners.diamonday.DiamondayListener;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/blocktyper/yearmarked/YearmarkedPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

import org.bukkit.scheduler.BukkitRunnable;

import com.blocktyper.v1_2_0.BlockTyperBasePlugin;
import com.blocktyper.v1_2_0.recipes.IRecipe;
import com.blocktyper.v1_2_1.BlockTyperBasePlugin;
import com.blocktyper.v1_2_1.recipes.IRecipe;
import com.blocktyper.yearmarked.commands.YmCommand;
import com.blocktyper.yearmarked.days.listeners.earthday.EarthdayListener;
import com.blocktyper.yearmarked.monitors.HolographicDisplayMonitor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import org.bukkit.event.inventory.InventoryClickEvent;
import org.bukkit.inventory.ItemStack;

import com.blocktyper.v1_2_0.nbt.NBTItem;
import com.blocktyper.v1_2_1.nbt.NBTItem;
import com.blocktyper.yearmarked.YearmarkedListenerBase;
import com.blocktyper.yearmarked.YearmarkedPlugin;
import com.blocktyper.yearmarked.days.listeners.earthday.EarthdayListener;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import org.bukkit.inventory.ItemStack;
import org.bukkit.scheduler.BukkitRunnable;

import com.blocktyper.v1_2_0.BlockTyperUtility;
import com.blocktyper.v1_2_1.BlockTyperUtility;
import com.blocktyper.yearmarked.ConfigKey;
import com.blocktyper.yearmarked.YearmarkedListenerBase;
import com.blocktyper.yearmarked.YearmarkedPlugin;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
import org.bukkit.potion.PotionEffect;
import org.bukkit.potion.PotionEffectType;

import com.blocktyper.v1_2_0.nbt.NBTItem;
import com.blocktyper.v1_2_0.recipes.AbstractBlockTyperRecipe;
import com.blocktyper.v1_2_0.recipes.BlockTyperRecipe;
import com.blocktyper.v1_2_1.nbt.NBTItem;
import com.blocktyper.v1_2_1.recipes.AbstractBlockTyperRecipe;
import com.blocktyper.v1_2_1.recipes.BlockTyperRecipe;
import com.blocktyper.yearmarked.ConfigKey;
import com.blocktyper.yearmarked.LocalizedMessage;
import com.blocktyper.yearmarked.YearmarkedListenerBase;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.blocktyper.yearmarked.days.listeners.special;

import com.blocktyper.v1_2_0.BlockTyperUtility;
import com.blocktyper.v1_2_1.BlockTyperUtility;
import com.blocktyper.yearmarked.YearmarkedPlugin;
import com.blocktyper.yearmarked.days.listeners.special.marketday.MarketDayListener;

Expand Down
Loading

0 comments on commit a3351e3

Please sign in to comment.