mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
Remove anniversary stuff
This commit is contained in:
parent
c8ff58bb6c
commit
cc9a6aa9b9
@ -51,33 +51,6 @@ public class McmmoCommand implements CommandExecutor {
|
||||
player.sendMessage(ChatColor.GREEN + "If you like my work you can donate via Paypal: theno1yeti@gmail.com");
|
||||
}
|
||||
|
||||
GregorianCalendar cakedayStart = new GregorianCalendar(2012, Calendar.FEBRUARY, 3);
|
||||
GregorianCalendar cakedayEnd = new GregorianCalendar(2012, Calendar.FEBRUARY, 6);
|
||||
GregorianCalendar day = new GregorianCalendar();
|
||||
int cakeCheck = 0;
|
||||
|
||||
for (String cake : mcMMO.gotCake)
|
||||
{
|
||||
if (player.getName().equalsIgnoreCase(cake)) {
|
||||
cakeCheck = 1;
|
||||
}
|
||||
}
|
||||
|
||||
if (cakeCheck == 0) {
|
||||
if (getDateRange(day.getTime(), cakedayStart.getTime(), cakedayEnd.getTime()))
|
||||
{
|
||||
player.sendMessage(ChatColor.BLUE + "Happy 1 Year Anniversary! In honor of all of");
|
||||
player.sendMessage(ChatColor.BLUE + "nossr50's work and all the devs, have some cake!");
|
||||
}
|
||||
mcMMO.gotCake.add(player.getName());
|
||||
player.getInventory().addItem(new ItemStack(Material.CAKE_BLOCK, 1));
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
private boolean getDateRange(Date date, Date start, Date end)
|
||||
{
|
||||
return !(date.before(start) || date.after(end));
|
||||
}
|
||||
}
|
||||
|
@ -96,8 +96,6 @@ public class mcMMO extends JavaPlugin
|
||||
public static Database database = null;
|
||||
public Misc misc = new Misc(this);
|
||||
|
||||
public static ArrayList<String> gotCake;
|
||||
|
||||
//Config file stuff
|
||||
LoadProperties config;
|
||||
//Jar stuff
|
||||
@ -126,36 +124,6 @@ public class mcMMO extends JavaPlugin
|
||||
//Catch all for versions not matching and no specific code being needed
|
||||
else if(!vnum.equalsIgnoreCase(this.getDescription().getVersion())) updateFrom(-1);
|
||||
}
|
||||
File cakeFile = new File(getDataFolder().getAbsolutePath() + File.separator + "cake");
|
||||
|
||||
if (!cakeFile.exists()) {
|
||||
try {
|
||||
cakeFile.createNewFile();
|
||||
}
|
||||
catch (IOException ex) {
|
||||
System.out.println(ex);
|
||||
}
|
||||
}
|
||||
|
||||
new File(getDataFolder().getAbsolutePath() + File.separator + "players").mkdir();
|
||||
|
||||
gotCake = new ArrayList<String>();
|
||||
|
||||
try {
|
||||
gotCake.clear();
|
||||
BufferedReader reader = new BufferedReader(new FileReader(getDataFolder().getAbsolutePath() + File.separator + "players"));
|
||||
String line = reader.readLine();
|
||||
|
||||
while(line != null) {
|
||||
gotCake.add(line);
|
||||
line = reader.readLine();
|
||||
}
|
||||
|
||||
reader.close();
|
||||
}
|
||||
catch (Exception ex) {
|
||||
System.out.println(ex);
|
||||
}
|
||||
|
||||
this.config = new LoadProperties(this);
|
||||
this.config.load();
|
||||
@ -285,18 +253,6 @@ public class mcMMO extends JavaPlugin
|
||||
return permissions;
|
||||
}
|
||||
public void onDisable() {
|
||||
try {
|
||||
BufferedWriter writer = new BufferedWriter(new FileWriter(getDataFolder().getAbsolutePath() + File.separator + "cake"));
|
||||
for (String player : gotCake) {
|
||||
writer.write(player);
|
||||
writer.newLine();
|
||||
}
|
||||
writer.close();
|
||||
}
|
||||
catch (Exception ex) {
|
||||
System.out.println(ex);
|
||||
}
|
||||
|
||||
Bukkit.getServer().getScheduler().cancelTasks(this);
|
||||
System.out.println("mcMMO was disabled.");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user