|
@@ -12,11 +12,8 @@ import me.km.exception.PlayerNotFoundException;
|
|
import me.km.nms.NmsUtilities;
|
|
import me.km.nms.NmsUtilities;
|
|
import me.km.plots.ProtectionBank;
|
|
import me.km.plots.ProtectionBank;
|
|
import me.km.table.TableAPI;
|
|
import me.km.table.TableAPI;
|
|
-import java.time.ZonedDateTime;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.Arrays;
|
|
-import java.util.Calendar;
|
|
|
|
-import java.util.GregorianCalendar;
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
import java.util.UUID;
|
|
import java.util.UUID;
|
|
@@ -77,7 +74,7 @@ import net.minecraft.util.math.Vec3d;
|
|
import net.minecraft.util.text.TextComponentString;
|
|
import net.minecraft.util.text.TextComponentString;
|
|
import net.minecraft.world.World;
|
|
import net.minecraft.world.World;
|
|
import net.minecraft.world.WorldServer;
|
|
import net.minecraft.world.WorldServer;
|
|
-import me.hammerle.exceptions.PrescriptException;
|
|
|
|
|
|
+import me.hammerle.exceptions.PreScriptException;
|
|
import me.hammerle.exceptions.IllegalStringException;
|
|
import me.hammerle.exceptions.IllegalStringException;
|
|
import me.hammerle.code.SnuviParser;
|
|
import me.hammerle.code.SnuviParser;
|
|
import me.hammerle.exceptions.HoldCodeException;
|
|
import me.hammerle.exceptions.HoldCodeException;
|
|
@@ -698,9 +695,9 @@ public class MinecraftFunctions implements ISnuviLogger
|
|
else
|
|
else
|
|
{
|
|
{
|
|
sendToDevsWithHelpList("§cFehler:", ex.getClass().getSimpleName());
|
|
sendToDevsWithHelpList("§cFehler:", ex.getClass().getSimpleName());
|
|
- if(ex instanceof PrescriptException)
|
|
|
|
|
|
+ if(ex instanceof PreScriptException)
|
|
{
|
|
{
|
|
- sendToDevsWithList("§c" + ((PrescriptException) ex).getException());
|
|
|
|
|
|
+ sendToDevsWithList("§c" + ((PreScriptException) ex).getException());
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -742,9 +739,9 @@ public class MinecraftFunctions implements ISnuviLogger
|
|
else
|
|
else
|
|
{
|
|
{
|
|
m.sendWarningToConsole("Fehler: " + ex.getClass().getSimpleName());
|
|
m.sendWarningToConsole("Fehler: " + ex.getClass().getSimpleName());
|
|
- if(ex instanceof PrescriptException)
|
|
|
|
|
|
+ if(ex instanceof PreScriptException)
|
|
{
|
|
{
|
|
- m.sendWarningToConsole(((PrescriptException) ex).getException());
|
|
|
|
|
|
+ m.sendWarningToConsole(((PreScriptException) ex).getException());
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -1343,64 +1340,6 @@ public class MinecraftFunctions implements ISnuviLogger
|
|
RecipeUtils.registerShapedRecipe((ItemStack) args[0], s, stacks);
|
|
RecipeUtils.registerShapedRecipe((ItemStack) args[0], s, stacks);
|
|
}
|
|
}
|
|
|
|
|
|
- // -------------------------------------------------------------------------
|
|
|
|
- // Zeit-Handler
|
|
|
|
- // -------------------------------------------------------------------------
|
|
|
|
-
|
|
|
|
- private static long getNextDay(Object[] args)
|
|
|
|
- {
|
|
|
|
- GregorianCalendar cal = GregorianCalendar.from(ZonedDateTime.now());
|
|
|
|
- cal.setTimeInMillis((long) args[0]);
|
|
|
|
- cal.add(Calendar.DAY_OF_YEAR, 1);
|
|
|
|
- cal.set(Calendar.HOUR, 0);
|
|
|
|
- cal.set(Calendar.SECOND, 0);
|
|
|
|
- cal.set(Calendar.MINUTE, 0);
|
|
|
|
- cal.set(Calendar.MILLISECOND, 0);
|
|
|
|
- return cal.getTimeInMillis();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- private static int getYear(Object[] args)
|
|
|
|
- {
|
|
|
|
- GregorianCalendar cal = GregorianCalendar.from(ZonedDateTime.now());
|
|
|
|
- cal.setTimeInMillis((long) args[0]);
|
|
|
|
- return cal.get(Calendar.YEAR);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- private static int getMonth(Object[] args)
|
|
|
|
- {
|
|
|
|
- GregorianCalendar cal = GregorianCalendar.from(ZonedDateTime.now());
|
|
|
|
- cal.setTimeInMillis((long) args[0]);
|
|
|
|
- return cal.get(Calendar.MONTH) + 1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- private static int getDay(Object[] args)
|
|
|
|
- {
|
|
|
|
- GregorianCalendar cal = GregorianCalendar.from(ZonedDateTime.now());
|
|
|
|
- cal.setTimeInMillis((long) args[0]);
|
|
|
|
- return cal.get(Calendar.DAY_OF_MONTH);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- private static int getHour(Object[] args)
|
|
|
|
- {
|
|
|
|
- GregorianCalendar cal = GregorianCalendar.from(ZonedDateTime.now());
|
|
|
|
- cal.setTimeInMillis((long) args[0]);
|
|
|
|
- return cal.get(Calendar.HOUR_OF_DAY);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- private static int getMinute(Object[] args)
|
|
|
|
- {
|
|
|
|
- GregorianCalendar cal = GregorianCalendar.from(ZonedDateTime.now());
|
|
|
|
- cal.setTimeInMillis((long) args[0]);
|
|
|
|
- return cal.get(Calendar.MINUTE);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- private static int getSecond(Object[] args)
|
|
|
|
- {
|
|
|
|
- GregorianCalendar cal = GregorianCalendar.from(ZonedDateTime.now());
|
|
|
|
- cal.setTimeInMillis((long) args[0]);
|
|
|
|
- return cal.get(Calendar.SECOND);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
// -------------------------------------------------------------------------
|
|
// -------------------------------------------------------------------------
|
|
// Gruppen-Handler
|
|
// Gruppen-Handler
|
|
// -------------------------------------------------------------------------
|
|
// -------------------------------------------------------------------------
|