diff --git a/install.cmd b/install.cmd index 8da52e19..40c19cdf 100644 --- a/install.cmd +++ b/install.cmd @@ -10,7 +10,6 @@ SET MC_VEV=1.8.8 SET OPTIFINE_LK=https://raw.githubusercontent.com/Hexeption/Optifine-SRC/master/Optifine%20SRC%20Version%20%5B1.8.8%20HD%20U%20H8%5D.zip :: Downloading Beta MCP -:: TODO Check if there is already and tmp folder ECHO Downloading MCP... DEL tmp /S /Q /F MD tmp diff --git a/src/main/java/net/minecraft/client/renderer/InventoryEffectRenderer.java b/src/main/java/net/minecraft/client/renderer/InventoryEffectRenderer.java index ba6e193d..b1a4459a 100644 --- a/src/main/java/net/minecraft/client/renderer/InventoryEffectRenderer.java +++ b/src/main/java/net/minecraft/client/renderer/InventoryEffectRenderer.java @@ -1,12 +1,13 @@ package net.minecraft.client.renderer; -import java.util.Collection; import net.minecraft.client.gui.inventory.GuiContainer; import net.minecraft.client.resources.I18n; import net.minecraft.inventory.Container; import net.minecraft.potion.Potion; import net.minecraft.potion.PotionEffect; +import java.util.Collection; + public abstract class InventoryEffectRenderer extends GuiContainer { /** True if there is some potion effect to display */ diff --git a/src/main/java/optifine/Config.java b/src/main/java/optifine/Config.java index 9e9f658f..c002d9cc 100644 --- a/src/main/java/optifine/Config.java +++ b/src/main/java/optifine/Config.java @@ -1,27 +1,5 @@ package optifine; -import java.awt.Dimension; -import java.awt.image.BufferedImage; -import java.io.BufferedReader; -import java.io.ByteArrayOutputStream; -import java.io.File; -import java.io.FileInputStream; -import java.io.FileOutputStream; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.lang.reflect.Array; -import java.nio.ByteBuffer; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.HashSet; -import java.util.List; -import java.util.Properties; -import java.util.Set; -import java.util.StringTokenizer; -import java.util.regex.Matcher; -import java.util.regex.Pattern; -import javax.imageio.ImageIO; import net.minecraft.client.LoadingScreenRenderer; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.ScaledResolution; @@ -30,11 +8,7 @@ import net.minecraft.client.renderer.RenderGlobal; import net.minecraft.client.renderer.texture.DynamicTexture; import net.minecraft.client.renderer.texture.TextureManager; import net.minecraft.client.renderer.texture.TextureMap; -import net.minecraft.client.resources.DefaultResourcePack; -import net.minecraft.client.resources.IResource; -import net.minecraft.client.resources.IResourceManager; -import net.minecraft.client.resources.IResourcePack; -import net.minecraft.client.resources.ResourcePackRepository; +import net.minecraft.client.resources.*; import net.minecraft.client.resources.ResourcePackRepository.Entry; import net.minecraft.client.resources.model.ModelManager; import net.minecraft.client.settings.GameSettings; @@ -49,17 +23,22 @@ import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.lwjgl.LWJGLException; import org.lwjgl.Sys; -import org.lwjgl.opengl.Display; import org.lwjgl.opengl.DisplayMode; -import org.lwjgl.opengl.GL11; -import org.lwjgl.opengl.GL20; -import org.lwjgl.opengl.GL12; -import org.lwjgl.opengl.GL30; -import org.lwjgl.opengl.GLContext; -import org.lwjgl.opengl.PixelFormat; +import org.lwjgl.opengl.*; import org.lwjgl.util.glu.GLU; import shadersmod.client.Shaders; +import javax.imageio.ImageIO; +import java.awt.*; +import java.awt.image.BufferedImage; +import java.io.*; +import java.lang.reflect.Array; +import java.nio.ByteBuffer; +import java.util.List; +import java.util.*; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + public class Config { public static final String OF_NAME = "OptiFine"; @@ -153,7 +132,7 @@ public class Config { initialized = true; checkOpenGlCaps(); - startVersionCheckThread(); + //startVersionCheckThread(); } } } diff --git a/src/main/java/rip/athena/api/account/AccountManager.java b/src/main/java/rip/athena/api/account/AccountManager.java index f43a0d02..55d1f495 100644 --- a/src/main/java/rip/athena/api/account/AccountManager.java +++ b/src/main/java/rip/athena/api/account/AccountManager.java @@ -28,12 +28,16 @@ public class AccountManager { private Account currentAccount; public AccountManager() { + Athena.INSTANCE.sendInitializationMessage("Account Manager", false); + if(Athena.INSTANCE.getACCOUNTS_DIR().length() == 0) { isFirstLogin = true; } this.load(); this.login(currentAccount); + + Athena.INSTANCE.sendInitializationMessage("Account Manager", true); } public void save() { diff --git a/src/main/java/rip/athena/api/config/save/ConfigManager.java b/src/main/java/rip/athena/api/config/save/ConfigManager.java index 16f3a975..85ff436c 100644 --- a/src/main/java/rip/athena/api/config/save/ConfigManager.java +++ b/src/main/java/rip/athena/api/config/save/ConfigManager.java @@ -25,6 +25,8 @@ public class ConfigManager { protected FileHandler lastFile; public ConfigManager(File directory) { + Athena.INSTANCE.sendInitializationMessage("Config Manager", false); + if(!directory.exists()) { directory.mkdir(); } @@ -40,6 +42,8 @@ public class ConfigManager { } this.directory = directory; + + Athena.INSTANCE.sendInitializationMessage("Config Manager", true); } public void postInit() { diff --git a/src/main/java/rip/athena/api/event/EventBus.java b/src/main/java/rip/athena/api/event/EventBus.java index 2f1947b1..caef9a94 100644 --- a/src/main/java/rip/athena/api/event/EventBus.java +++ b/src/main/java/rip/athena/api/event/EventBus.java @@ -21,7 +21,9 @@ public class EventBus { private final Map> registry; public EventBus() { + Athena.INSTANCE.sendInitializationMessage("Event Bus", false); registry = new LinkedHashMap<>(); + Athena.INSTANCE.sendInitializationMessage("Event Bus", true); } public void register(Object clazz) { diff --git a/src/main/java/rip/athena/api/macro/MacroManager.java b/src/main/java/rip/athena/api/macro/MacroManager.java index 213acfd7..700c0ac5 100644 --- a/src/main/java/rip/athena/api/macro/MacroManager.java +++ b/src/main/java/rip/athena/api/macro/MacroManager.java @@ -4,6 +4,7 @@ import lombok.Getter; import lombok.Setter; import net.minecraft.client.Minecraft; import rip.athena.api.event.SubscribeEvent; +import rip.athena.client.Athena; import rip.athena.client.events.input.KeyDownEvent; import rip.athena.client.events.input.MouseDownEvent; import rip.athena.client.ui.clickgui.components.mods.MenuModKeybind; @@ -24,7 +25,10 @@ public class MacroManager { private List macros; public MacroManager() { + Athena.INSTANCE.sendInitializationMessage("Macro Manager", false); + this.macros = new CopyOnWriteArrayList<>(); + Athena.INSTANCE.sendInitializationMessage("Macro Manager", true); } @SubscribeEvent diff --git a/src/main/java/rip/athena/api/module/ModuleRepository.java b/src/main/java/rip/athena/api/module/ModuleRepository.java index eafa38c2..ea0e66e4 100644 --- a/src/main/java/rip/athena/api/module/ModuleRepository.java +++ b/src/main/java/rip/athena/api/module/ModuleRepository.java @@ -24,6 +24,8 @@ public class ModuleRepository { * Initializes the ModuleManager by scanning for module classes and creating instances. */ public ModuleRepository() { + Athena.INSTANCE.sendInitializationMessage("Module Repository", false); + Reflections reflections = new Reflections("rip.athena.client.modules"); Set> classes = reflections.getSubTypesOf(Module.class); @@ -35,6 +37,7 @@ public class ModuleRepository { e.printStackTrace(); } } + Athena.INSTANCE.sendInitializationMessage("Module Repository", true); } /** diff --git a/src/main/java/rip/athena/client/Athena.java b/src/main/java/rip/athena/client/Athena.java index 85437ce8..a486b27e 100644 --- a/src/main/java/rip/athena/client/Athena.java +++ b/src/main/java/rip/athena/client/Athena.java @@ -65,7 +65,7 @@ public class Athena { private EventBus eventBus; private boolean isGameRunningForeground = true; - public static boolean hasSent = false; + private boolean hasSent = false; /** * Initializes the client resources and setup. @@ -74,6 +74,9 @@ public class Athena { * connections with servers or other systems. */ public void initClient() { + + sendInitializationMessage("Athena", false); + createDirectoryIfNotExists(MAIN_DIR); createFileIfNotExists(ACCOUNTS_DIR); @@ -84,6 +87,7 @@ public class Athena { checkCosmetics(); logInformation(); + } private void postInit() { @@ -107,7 +111,7 @@ public class Athena { this.notificationManager = new NotificationManager(); this.cosmeticsController = new CosmeticsController(); - configManager.postInit(); + this.configManager.postInit(); } private void checkCosmetics() { @@ -117,6 +121,9 @@ public class Athena { } private void logInformation() { + if (!debug) return; + + Athena.INSTANCE.getLog().info("--------------------------------"); Athena.INSTANCE.getLog().info("Successfully loaded Athena!"); Athena.INSTANCE.getLog().info("--------------------------------"); Athena.INSTANCE.getLog().info("OS: " + System.getProperty("os.name")); @@ -136,6 +143,14 @@ public class Athena { Athena.INSTANCE.getLog().info("--------------------------------"); } + public void sendInitializationMessage(String string, boolean finished) { + if (!debug) return; + if(!finished) { + Athena.INSTANCE.getLog().info("--------------------------------"); + Athena.INSTANCE.getLog().info("Initializing " + string); + } else Athena.INSTANCE.getLog().info("Initialized " + string); + } + /** * Registers the events for the event bus. */ @@ -211,16 +226,4 @@ public class Athena { public void shutdownClient() { log.info("Shutting down client"); } - - public String getClientBuild() { - return clientBuild; - } - - public String getClientName() { - return clientName; - } - - public String getClientVersion() { - return clientVersion; - } } diff --git a/src/main/java/rip/athena/client/config/AbstractConfigEntry.java b/src/main/java/rip/athena/client/config/AbstractConfigEntry.java index ec870635..fd7989f1 100644 --- a/src/main/java/rip/athena/client/config/AbstractConfigEntry.java +++ b/src/main/java/rip/athena/client/config/AbstractConfigEntry.java @@ -1,15 +1,20 @@ package rip.athena.client.config; -import java.lang.reflect.Field; - +import lombok.Getter; +import lombok.Setter; import rip.athena.api.config.IConfigEntry; import rip.athena.client.Athena; +import java.lang.reflect.Field; + /** * @author Athena Development * @project Athena-Client * @date 6/6/2023 */ + +@Setter +@Getter public abstract class AbstractConfigEntry implements IConfigEntry { private Field field; private String key; @@ -22,19 +27,7 @@ public abstract class AbstractConfigEntry implements IConfigEntry { this.description = description; this.visible = visible; } - - public Field getField() { - return field; - } - - public String getKey() { - return key; - } - - public String getDescription() { - return description; - } - + public Object getValue(Object obj) { try { return getField().get(obj); @@ -45,10 +38,6 @@ public abstract class AbstractConfigEntry implements IConfigEntry { return null; } - public boolean isVisible() { - return visible; - } - public boolean hasDescription() { return description != null && description.length() > 0; } @@ -60,11 +49,6 @@ public abstract class AbstractConfigEntry implements IConfigEntry { Athena.INSTANCE.getLog().error("Failed to set config value for module " + obj + "." + e); } } - - public void setVisible(boolean visible) { - this.visible = visible; - } - public boolean isInstance(Object object) { if(object.getClass() == getType()) { return true; diff --git a/src/main/java/rip/athena/client/config/entries/ColorEntry.java b/src/main/java/rip/athena/client/config/entries/ColorEntry.java index 7c5f4ebc..779b81aa 100644 --- a/src/main/java/rip/athena/client/config/entries/ColorEntry.java +++ b/src/main/java/rip/athena/client/config/entries/ColorEntry.java @@ -1,12 +1,11 @@ package rip.athena.client.config.entries; -import java.awt.Color; -import java.lang.reflect.Field; - import org.json.JSONObject; - import rip.athena.client.config.AbstractConfigEntry; +import java.awt.*; +import java.lang.reflect.Field; + /** * @author Athena Development * @project Athena-Client diff --git a/src/main/java/rip/athena/client/config/entries/DoubleEntry.java b/src/main/java/rip/athena/client/config/entries/DoubleEntry.java index e7abac27..4c5cc431 100644 --- a/src/main/java/rip/athena/client/config/entries/DoubleEntry.java +++ b/src/main/java/rip/athena/client/config/entries/DoubleEntry.java @@ -1,16 +1,18 @@ package rip.athena.client.config.entries; -import java.lang.reflect.Field; - +import lombok.Getter; import org.json.JSONObject; - import rip.athena.client.config.AbstractConfigEntry; +import java.lang.reflect.Field; + /** * @author Athena Development * @project Athena-Client * @date 6/6/2023 */ + +@Getter public class DoubleEntry extends AbstractConfigEntry { private double min; private double max; @@ -35,12 +37,4 @@ public class DoubleEntry extends AbstractConfigEntry { config.put(key, Double.valueOf(String.valueOf(value))); } - - public double getMin() { - return min; - } - - public double getMax() { - return max; - } } diff --git a/src/main/java/rip/athena/client/config/entries/FloatEntry.java b/src/main/java/rip/athena/client/config/entries/FloatEntry.java index 6d1a9894..d1bf14a1 100644 --- a/src/main/java/rip/athena/client/config/entries/FloatEntry.java +++ b/src/main/java/rip/athena/client/config/entries/FloatEntry.java @@ -1,16 +1,18 @@ package rip.athena.client.config.entries; -import java.lang.reflect.Field; - +import lombok.Getter; import org.json.JSONObject; - import rip.athena.client.config.AbstractConfigEntry; +import java.lang.reflect.Field; + /** * @author Athena Development * @project Athena-Client * @date 6/6/2023 */ + +@Getter public class FloatEntry extends AbstractConfigEntry { private float min; private float max; @@ -35,12 +37,4 @@ public class FloatEntry extends AbstractConfigEntry { config.put(key, Float.valueOf(String.valueOf(value))); } - - public float getMin() { - return min; - } - - public float getMax() { - return max; - } } diff --git a/src/main/java/rip/athena/client/config/entries/IntEntry.java b/src/main/java/rip/athena/client/config/entries/IntEntry.java index 19aef923..eeafc9f2 100644 --- a/src/main/java/rip/athena/client/config/entries/IntEntry.java +++ b/src/main/java/rip/athena/client/config/entries/IntEntry.java @@ -1,16 +1,18 @@ package rip.athena.client.config.entries; -import java.lang.reflect.Field; - +import lombok.Getter; import org.json.JSONObject; - import rip.athena.client.config.AbstractConfigEntry; +import java.lang.reflect.Field; + /** * @author Athena Development * @project Athena-Client * @date 6/6/2023 */ + +@Getter public class IntEntry extends AbstractConfigEntry { private int min; private int max; @@ -41,16 +43,4 @@ public class IntEntry extends AbstractConfigEntry { config.put(key, Integer.valueOf(String.valueOf(value))); } - - public int getMin() { - return min; - } - - public int getMax() { - return max; - } - - public boolean isKeyBind() { - return isKeyBind; - } } diff --git a/src/main/java/rip/athena/client/config/entries/ListEntry.java b/src/main/java/rip/athena/client/config/entries/ListEntry.java index 1cb854f7..e9a1d408 100644 --- a/src/main/java/rip/athena/client/config/entries/ListEntry.java +++ b/src/main/java/rip/athena/client/config/entries/ListEntry.java @@ -1,19 +1,21 @@ package rip.athena.client.config.entries; -import java.lang.reflect.Field; - +import lombok.Getter; import org.json.JSONException; import org.json.JSONObject; - import rip.athena.api.module.Module; import rip.athena.client.Athena; import rip.athena.client.config.AbstractConfigEntry; +import java.lang.reflect.Field; + /** * @author Athena Development * @project Athena-Client * @date 6/6/2023 */ + +@Getter public class ListEntry extends AbstractConfigEntry { private Module module; private String[] values; @@ -42,8 +44,4 @@ public class ListEntry extends AbstractConfigEntry { Athena.INSTANCE.getLog().error("Failed to read list entry for " + module + ", " + getField() + "." + e); } } - - public String[] getValues() { - return values; - } } diff --git a/src/main/java/rip/athena/client/cosmetics/CosmeticsController.java b/src/main/java/rip/athena/client/cosmetics/CosmeticsController.java index 91274189..d0e00925 100644 --- a/src/main/java/rip/athena/client/cosmetics/CosmeticsController.java +++ b/src/main/java/rip/athena/client/cosmetics/CosmeticsController.java @@ -1,6 +1,7 @@ package rip.athena.client.cosmetics; import lombok.Getter; +import rip.athena.client.Athena; import rip.athena.client.cosmetics.cape.CapeManager; /** @@ -14,6 +15,9 @@ public class CosmeticsController { private final CapeManager capeManager; public CosmeticsController() { + Athena.INSTANCE.sendInitializationMessage("Cosmetics Controller", false); + capeManager = new CapeManager(); + Athena.INSTANCE.sendInitializationMessage("Cosmetics Controller", true); } } diff --git a/src/main/java/rip/athena/client/modules/render/GUIMod.java b/src/main/java/rip/athena/client/modules/render/GUIMod.java index cca79563..532400fe 100644 --- a/src/main/java/rip/athena/client/modules/render/GUIMod.java +++ b/src/main/java/rip/athena/client/modules/render/GUIMod.java @@ -4,8 +4,8 @@ import org.lwjgl.input.Keyboard; import rip.athena.api.module.EnumModuleType; import rip.athena.api.module.Module; import rip.athena.api.module.annotations.IModuleMetaData; -import rip.athena.client.ui.framework.Menu; import rip.athena.client.ui.clickgui.IngameMenu; +import rip.athena.client.ui.framework.Menu; /** * @author Athena Development diff --git a/src/main/java/rip/athena/client/modules/render/MotionBlur.java b/src/main/java/rip/athena/client/modules/render/MotionBlur.java index defe7384..90035f65 100644 --- a/src/main/java/rip/athena/client/modules/render/MotionBlur.java +++ b/src/main/java/rip/athena/client/modules/render/MotionBlur.java @@ -17,12 +17,12 @@ public class MotionBlur extends Module { @ConfigValue.Integer(name = "Amount", min = 1, max = 10) public static int amount = 1; - public static float f; + public static float value; public static void createAccumulation() { - float f = getAccumulationValue(); - GL11.glAccum(GL11.GL_MULT, f); - GL11.glAccum(GL11.GL_ACCUM, 1.0F - f); + float value = getAccumulationValue(); + GL11.glAccum(GL11.GL_MULT, value); + GL11.glAccum(GL11.GL_ACCUM, 1.0F - value); GL11.glAccum(GL11.GL_RETURN, 1.0F); } @@ -31,15 +31,15 @@ public class MotionBlur extends Module { } public static float getAccumulationValue() { - f = getMultiplier() * 10.0F; + value = getMultiplier() * 10.0F; long lastTimestampInGame = System.currentTimeMillis(); - if (f > 996.0F) { - f = 996.0F; + if (value > 996.0F) { + value = 996.0F; } - if (f > 990.0F) { - f = 990.0F; + if (value > 990.0F) { + value = 990.0F; } long i = System.currentTimeMillis() - lastTimestampInGame; @@ -47,11 +47,11 @@ public class MotionBlur extends Module { if (i > 10000L) { return 0.0F; } else { - if (f < 0.0F) { - f = 0.0F; + if (value < 0.0F) { + value = 0.0F; } - return f / 1000.0F; + return value / 1000.0F; } } diff --git a/src/main/java/rip/athena/client/modules/render/PotionEffects.java b/src/main/java/rip/athena/client/modules/render/PotionEffects.java new file mode 100644 index 00000000..1e7e87a4 --- /dev/null +++ b/src/main/java/rip/athena/client/modules/render/PotionEffects.java @@ -0,0 +1,96 @@ +package rip.athena.client.modules.render; + +import net.minecraft.client.renderer.GlStateManager; +import net.minecraft.client.resources.I18n; +import net.minecraft.potion.Potion; +import net.minecraft.potion.PotionEffect; +import net.minecraft.util.ResourceLocation; +import rip.athena.api.config.ConfigValue; +import rip.athena.api.module.EnumModuleType; +import rip.athena.api.module.Module; +import rip.athena.api.module.annotations.IModuleMetaData; +import rip.athena.client.ui.hud.HUDElement; +import rip.athena.client.utils.font.FontManager; +import rip.athena.client.utils.render.RoundedUtils; + +import java.awt.*; +import java.util.Collection; + +@IModuleMetaData(name = "Potion Effects", type = EnumModuleType.RENDER, icon = "") +public class PotionEffects extends Module { + + @ConfigValue.Boolean(name = "Background") + private boolean background = true; + + protected static final ResourceLocation inventoryBackground = new ResourceLocation("textures/gui/container/inventory.png"); + + HUDElement hud; + private int width = 140; + private int height = 32; + + public PotionEffects() { + hud = new HUDElement("potioneffects", width, height) { + @Override + public void onRender() { + render(); + } + }; + + hud.setX(5); + hud.setY(300); + + addHUD(hud); + } + + private void render() { + int x = hud.getX(); + int y = hud.getY(); + + int width = hud.getWidth(); + int height = hud.getHeight(); + + Collection collection = mc.thePlayer.getActivePotionEffects(); + + if (!collection.isEmpty()) { + GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F); + GlStateManager.disableLighting(); + int spacing = 35; + + if (collection.size() > 5) { + spacing = 132 / (collection.size() - 1); + } + for (PotionEffect potioneffect : mc.thePlayer.getActivePotionEffects()) { + Potion potion = Potion.potionTypes[potioneffect.getPotionID()]; + GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F); + mc.getTextureManager().bindTexture(inventoryBackground); + + if(background) { + RoundedUtils.drawRound(x, y, width, height, 6, new Color(0, 0, 0, 150)); + } + + if (potion.hasStatusIcon()) { + int statusIconIndex = potion.getStatusIconIndex(); + //Gui.drawTexturedModalRect(x, y + 7, statusIconIndex % 8 * 18, 198 + statusIconIndex / 8 * 18, 18, 18); + } + + String s1 = I18n.format(potion.getName()); + + if (potioneffect.getAmplifier() == 1) { + s1 = s1 + " " + I18n.format("enchantment.level.2"); + } else if (potioneffect.getAmplifier() == 2) { + s1 = s1 + " " + I18n.format("enchantment.level.3"); + } else if (potioneffect.getAmplifier() == 3) { + s1 = s1 + " " + I18n.format("enchantment.level.4"); + } + + FontManager.getProductSansRegular(20).drawString(s1, x + 28, y + 6, -1); + + String s = Potion.getDurationString(potioneffect); + FontManager.getProductSansRegular(20).drawString(s, (float) (x + 10 + 18), (float) (y + 6 + 10), -1); + + // Spacing between each element + y += spacing; + } + } + } +} diff --git a/src/main/java/rip/athena/client/modules/render/Scoreboard.java b/src/main/java/rip/athena/client/modules/render/Scoreboard.java index 6249aad5..374cb629 100644 --- a/src/main/java/rip/athena/client/modules/render/Scoreboard.java +++ b/src/main/java/rip/athena/client/modules/render/Scoreboard.java @@ -1,5 +1,6 @@ package rip.athena.client.modules.render; +import com.google.common.base.Predicate; import com.google.common.collect.Iterables; import com.google.common.collect.Lists; import net.minecraft.client.gui.GuiScreen; @@ -9,24 +10,22 @@ import net.minecraft.scoreboard.ScoreObjective; import net.minecraft.scoreboard.ScorePlayerTeam; import net.minecraft.util.EnumChatFormatting; import org.lwjgl.opengl.GL11; +import rip.athena.api.config.ConfigValue; +import rip.athena.api.event.SubscribeEvent; import rip.athena.api.module.EnumModuleType; import rip.athena.api.module.Module; import rip.athena.api.module.annotations.IModuleMetaData; import rip.athena.client.Athena; -import rip.athena.api.config.ConfigValue; -import rip.athena.api.event.SubscribeEvent; import rip.athena.client.events.render.RenderEvent; import rip.athena.client.events.render.RenderType; import rip.athena.client.ui.hud.HUDElement; +import rip.athena.client.utils.render.ColorUtil; +import rip.athena.client.utils.render.RoundedUtils; import java.awt.*; import java.util.Collection; import java.util.List; -import com.google.common.base.Predicate; -import rip.athena.client.utils.render.ColorUtil; -import rip.athena.client.utils.render.RoundedUtils; - /** * @author Athena Development * @project Athena-Client @@ -144,7 +143,6 @@ public class Scoreboard extends Module { hud.setY(yPos); } - if(background) { if(backgroundMode.equalsIgnoreCase("Modern")) { if(Athena.INSTANCE.getThemeManager().getTheme().isTriColor()) { @@ -171,7 +169,6 @@ public class Scoreboard extends Module { int l = hud.getX() + hud.getWidth(); - if(background && backgroundMode.equalsIgnoreCase("Default")) { GuiScreen.drawRectangle(l1 - 2, k, l, k + mc.fontRendererObj.FONT_HEIGHT, 1342177280); } diff --git a/src/main/java/rip/athena/client/theme/impl/AccentTheme.java b/src/main/java/rip/athena/client/theme/impl/AccentTheme.java index 084db14e..ce231133 100644 --- a/src/main/java/rip/athena/client/theme/impl/AccentTheme.java +++ b/src/main/java/rip/athena/client/theme/impl/AccentTheme.java @@ -51,7 +51,7 @@ public enum AccentTheme implements ColorUtil { BUBBLEGUM("Bubblegum", new Color(243, 145, 216), new Color(152, 165, 243), LIGHT_PURPLE, false, KeyColors.PINK, KeyColors.PURPLE), CANDY_CANE("Candy Cane", new Color(255, 255, 255), new Color(255, 0, 0), RED, false, KeyColors.RED), CHERRY("Cherry", new Color(187, 55, 125), new Color(251, 211, 233), RED, false, KeyColors.RED, KeyColors.PURPLE, KeyColors.PINK), - CHRISTMAS("Christmas", new Color(255, 64, 64), new Color(255, 255, 255), new Color(64, 255, 64), RED, true, KeyColors.RED, KeyColors.LIME), + CHRISTMAS("Christmas", new Color(255, 64, 64), new Color(255, 255, 255), RED, true, KeyColors.RED, KeyColors.LIME), CORAL("Coral", new Color(244, 168, 150), new Color(52, 133, 151), DARK_AQUA, false, KeyColors.PINK, KeyColors.ORANGE, KeyColors.DARK_BLUE), DIGITAL_HORIZON("Digital Horizon", new Color(95, 195, 228), new Color(229, 93, 135), EnumChatFormatting.AQUA, false, KeyColors.AQUA, KeyColors.RED, KeyColors.PINK), EXPRESS("Express", new Color(173, 83, 137), new Color(60, 16, 83), DARK_PURPLE, false, KeyColors.PURPLE, KeyColors.PINK), @@ -97,18 +97,6 @@ public enum AccentTheme implements ColorUtil { this.triColor = triColor; } - public Color getFirstColor() { - return firstColor; - } - - public Color getSecondColor() { - return secondColor; - } - - public Color getThirdColor() { - return thirdColor; - } - /** * Calculates the accent color at a specific screen point. Depending on the position on the screen, the * accent has a slightly different color (blending between the two or three accent colors) to create an @@ -135,23 +123,6 @@ public enum AccentTheme implements ColorUtil { return ColorUtil.mixColors(getFirstColor(), getSecondColor(), getBlendFactor(screenCoordinates)); } - public double getWaveFactor(Vector2d screenCoordinates) { - double waveLength = 200.0; // Adjust this value to control the wavelength of the wave - double waveSpeed = 0.01; // Adjust this value to control the speed of the wave - double offsetX = (screenCoordinates.getX() / waveLength) - (System.currentTimeMillis() * waveSpeed); - double waveOffset = Math.sin(offsetX); - return (waveOffset + 1.0) / 2.0; // Normalize the wave offset to the range [0, 1] - } - - - private Color getColorFromWave(double waveFactor) { - // Interpolate between the first and second color using the wave factor - int red = (int) (getFirstColor().getRed() + waveFactor * (getSecondColor().getRed() - getFirstColor().getRed())); - int green = (int) (getFirstColor().getGreen() + waveFactor * (getSecondColor().getGreen() - getFirstColor().getGreen())); - int blue = (int) (getFirstColor().getBlue() + waveFactor * (getSecondColor().getBlue() - getFirstColor().getBlue())); - return new Color(red, green, blue); - } - public Color getAccentColorWave(Vector2d screenCoordinates) { double waveIntensity = 0.5; // Adjust this value to control the intensity of the wave @@ -187,10 +158,6 @@ public enum AccentTheme implements ColorUtil { return 4; } - public Color getDropShadow() { - return new Color(0, 0, 0, 160); - } - /** * Determines the blending factor between the themes two accent colors at a specific screen coordinate * @@ -227,5 +194,4 @@ public enum AccentTheme implements ColorUtil { private final Color color; } - } diff --git a/src/main/java/rip/athena/client/ui/clickgui/Category.java b/src/main/java/rip/athena/client/ui/clickgui/Category.java index 96515141..acde15c0 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/Category.java +++ b/src/main/java/rip/athena/client/ui/clickgui/Category.java @@ -14,6 +14,7 @@ public enum Category { PROFILES("PROFILES", "Athena/gui/menu/profiles.png"), COSMETICS("COSMETICS", "Athena/gui/menu/cosmetics.png"), //COSMETICS("COSMETICS", "Athena/gui/menu/cosmetics.png"), + SCREENSHOTS("SCREENSHOTS", "Athena/gui/menu/themes.png"), THEMES("THEMES", "Athena/gui/menu/themes.png"); private String name; diff --git a/src/main/java/rip/athena/client/ui/clickgui/IngameMenu.java b/src/main/java/rip/athena/client/ui/clickgui/IngameMenu.java index ec599cd0..fbc5a05d 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/IngameMenu.java +++ b/src/main/java/rip/athena/client/ui/clickgui/IngameMenu.java @@ -1,24 +1,22 @@ package rip.athena.client.ui.clickgui; +import net.minecraft.client.gui.ScaledResolution; +import net.minecraft.client.renderer.GlStateManager; +import net.minecraft.util.ResourceLocation; +import rip.athena.api.config.save.Config; import rip.athena.api.module.Module; import rip.athena.client.Athena; -import rip.athena.api.config.save.Config; +import rip.athena.client.modules.other.Settings; import rip.athena.client.theme.impl.PrimaryTheme; -import rip.athena.client.ui.clickgui.components.mods.ModCategoryButton; +import rip.athena.client.ui.clickgui.components.mods.CategoryButton; import rip.athena.client.ui.clickgui.pages.ModsPage; import rip.athena.client.ui.framework.Menu; import rip.athena.client.ui.framework.MenuComponent; import rip.athena.client.ui.framework.MinecraftMenuImpl; import rip.athena.client.ui.framework.components.MenuButton; -import rip.athena.client.ui.framework.components.MenuCheckbox; import rip.athena.client.ui.framework.components.MenuDraggable; import rip.athena.client.ui.framework.components.MenuScrollPane; import rip.athena.client.ui.framework.draw.DrawImpl; -import rip.athena.client.ui.clickgui.components.mods.CategoryButton; -import net.minecraft.client.gui.ScaledResolution; -import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.util.ResourceLocation; -import rip.athena.client.modules.other.Settings; import rip.athena.client.utils.render.ColorUtil; import rip.athena.client.utils.render.RoundedUtils; @@ -147,7 +145,13 @@ public class IngameMenu extends MinecraftMenuImpl implements DrawImpl { } RoundedUtils.drawRoundedRect(menu.getX(), menu.getY(), menu.getX() + menu.getWidth(), menu.getY() + menu.getHeight(), 16, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getFirstColor()); - rip.athena.client.utils.font.FontManager.getProductSansBold(60).drawString(Athena.INSTANCE.getClientName(), menu.getX() + 40, menu.getY() + 17, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + + GlStateManager.pushMatrix(); + GlStateManager.translate(menu.getX() - 40, menu.getY() - 20, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-menu.getX(), -menu.getY(), 0); + rip.athena.client.utils.font.FontManager.getProductSansBold(40).drawString(Athena.INSTANCE.getClientName(), menu.getX() + 40, menu.getY() + 17, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.popMatrix(); drawVerticalLine(menu.getX() + 215, menu.getY() + 60, menu.getHeight() - 60, 3, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getSecondColor()); drawShadowDown(menu.getX(), menu.getY() + 58, menu.getWidth()); diff --git a/src/main/java/rip/athena/client/ui/clickgui/PageManager.java b/src/main/java/rip/athena/client/ui/clickgui/PageManager.java index 44e6e92d..04b15538 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/PageManager.java +++ b/src/main/java/rip/athena/client/ui/clickgui/PageManager.java @@ -34,6 +34,7 @@ public class PageManager { //pages.put(Category.WAYPOINTS, new WaypointsPage(mc, menu, parent)); pages.put(Category.PROFILES, new ProfilesPage(mc, menu, parent)); pages.put(Category.COSMETICS, new CosmeticsPage(mc, menu, parent)); + pages.put(Category.SCREENSHOTS, new ScreenshotsPage(mc, menu, parent)); pages.put(Category.THEMES, new ThemesPage(mc, menu, parent)); } diff --git a/src/main/java/rip/athena/client/ui/clickgui/components/capes/CapeButton.java b/src/main/java/rip/athena/client/ui/clickgui/components/capes/CapeButton.java index 9f1a2c78..31e89332 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/components/capes/CapeButton.java +++ b/src/main/java/rip/athena/client/ui/clickgui/components/capes/CapeButton.java @@ -59,8 +59,8 @@ public class CapeButton extends MenuButton { int y = this.getRenderY(); int width = this.width; - RoundedUtils.drawGradientRound(x, y, width, height, 18, ColorUtil.getClientColor(0, 255), ColorUtil.getClientColor(90, 255), ColorUtil.getClientColor(180, 255), ColorUtil.getClientColor(270, 255)); - RoundedUtils.drawRound(x + 1, y + 1, width - 2, height - 2, 16, new Color(Athena.INSTANCE.getThemeManager().getPrimaryTheme().getThirdColor())); + RoundedUtils.drawGradientRound(x, y, width, height, 10, ColorUtil.getClientColor(0, 255), ColorUtil.getClientColor(90, 255), ColorUtil.getClientColor(180, 255), ColorUtil.getClientColor(270, 255)); + RoundedUtils.drawRound(x + 1, y + 1, width - 2, height - 2, 8, new Color(Athena.INSTANCE.getThemeManager().getPrimaryTheme().getThirdColor())); if (!cape.getName().equals("None")) { DrawUtils.drawImage(cape.getDisplayTexture(), x + 25, y + 15, width - 50, height - 50); diff --git a/src/main/java/rip/athena/client/ui/clickgui/components/macros/MacroButton.java b/src/main/java/rip/athena/client/ui/clickgui/components/macros/MacroButton.java index a4076523..8b78e842 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/components/macros/MacroButton.java +++ b/src/main/java/rip/athena/client/ui/clickgui/components/macros/MacroButton.java @@ -3,10 +3,10 @@ package rip.athena.client.ui.clickgui.components.macros; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.GlStateManager; import rip.athena.api.font.FontManager; +import rip.athena.client.modules.other.Settings; import rip.athena.client.ui.framework.components.MenuButton; import rip.athena.client.ui.framework.draw.ButtonState; import rip.athena.client.ui.framework.draw.DrawType; -import rip.athena.client.modules.other.Settings; import rip.athena.client.utils.render.DrawUtils; import java.awt.*; @@ -81,7 +81,12 @@ public class MacroButton extends MenuButton { @Override public void drawText(String text, int x, int y, int color) { if(Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getProductSansRegular(30).drawString(text, x, y, color); + GlStateManager.pushMatrix(); + GlStateManager.translate(x, y,0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-x, -y, 0); + rip.athena.client.utils.font.FontManager.getProductSansRegular(18).drawString(text, x, y, color); + GlStateManager.popMatrix(); } else { Minecraft.getMinecraft().fontRendererObj.drawString(text, x, y, color); } @@ -90,7 +95,7 @@ public class MacroButton extends MenuButton { @Override public int getStringWidth(String string) { if(Settings.customGuiFont) { - return (int) rip.athena.client.utils.font.FontManager.getProductSansRegular(30).width(string); + return (int) rip.athena.client.utils.font.FontManager.getProductSansRegular(35).width(string); } else { return Minecraft.getMinecraft().fontRendererObj.getStringWidth(string); } diff --git a/src/main/java/rip/athena/client/ui/clickgui/components/macros/SimpleTextButton.java b/src/main/java/rip/athena/client/ui/clickgui/components/macros/SimpleTextButton.java index 2d1bf813..e06fa485 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/components/macros/SimpleTextButton.java +++ b/src/main/java/rip/athena/client/ui/clickgui/components/macros/SimpleTextButton.java @@ -79,7 +79,12 @@ public class SimpleTextButton extends MenuButton { @Override public void drawText(String string, int x, int y, int color) { if(Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getProductSansRegular(30).drawString(string, x - 3, y, color); + GlStateManager.pushMatrix(); + GlStateManager.translate(x, y,0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-x, -y, 0); + rip.athena.client.utils.font.FontManager.getProductSansRegular(18).drawString(text, x - 2, y, color); + GlStateManager.popMatrix(); } else { Minecraft.getMinecraft().fontRendererObj.drawString(string, x, y, color); } diff --git a/src/main/java/rip/athena/client/ui/clickgui/components/mods/CategoryButton.java b/src/main/java/rip/athena/client/ui/clickgui/components/mods/CategoryButton.java index c7af49c5..74823f13 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/components/mods/CategoryButton.java +++ b/src/main/java/rip/athena/client/ui/clickgui/components/mods/CategoryButton.java @@ -4,12 +4,11 @@ import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.util.ResourceLocation; import rip.athena.client.Athena; -import rip.athena.client.ui.clickgui.IngameMenu; +import rip.athena.client.modules.other.Settings; +import rip.athena.client.ui.clickgui.Category; import rip.athena.client.ui.framework.components.MenuButton; import rip.athena.client.ui.framework.draw.ButtonState; import rip.athena.client.ui.framework.draw.DrawType; -import rip.athena.client.ui.clickgui.Category; -import rip.athena.client.modules.other.Settings; import rip.athena.client.utils.render.ColorUtil; import rip.athena.client.utils.render.DrawUtils; import rip.athena.client.utils.render.RoundedUtils; @@ -72,11 +71,16 @@ public class CategoryButton extends MenuButton { GlStateManager.popMatrix(); } else { if (isActive()) { - RoundedUtils.drawRound(x + 30, y, width - 70, height, 12, new Color(10, 10, 10, 150)); - RoundedUtils.drawRoundedGradientOutlineCorner(x + 30, y, width + x - 40, height + y, 1, 12, ColorUtil.getClientColor(0, 255).getRGB(), ColorUtil.getClientColor(90, 255).getRGB(), ColorUtil.getClientColor(180, 255).getRGB(), ColorUtil.getClientColor(270, 255).getRGB()); + RoundedUtils.drawRound(x + 30, y, width - 40, height, 12, new Color(10, 10, 10, 150)); + RoundedUtils.drawRoundedGradientOutlineCorner(x + 30, y, width + x - 10, height + y, 1, 12, ColorUtil.getClientColor(0, 255).getRGB(), ColorUtil.getClientColor(90, 255).getRGB(), ColorUtil.getClientColor(180, 255).getRGB(), ColorUtil.getClientColor(270, 255).getRGB()); } if (Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getNunitoBold(25).drawString(text, x + 70, y + height / 2 - (getStringHeight(text) / 2) + 2, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.pushMatrix(); + GlStateManager.translate(x - 70, y - (getStringHeight(text) / 2) - 5, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-x, -y, 0); + rip.athena.client.utils.font.FontManager.getProductSansRegular(17).drawString(text, x + 70, y + height / 2 - (getStringHeight(text) / 2) + 2, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.popMatrix(); } else { Minecraft.getMinecraft().fontRendererObj.drawString(text, x + (width / 2 - getStringWidth(text) / 2), y + height / 2 - (getStringHeight(text) / 2), Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); } @@ -93,7 +97,7 @@ public class CategoryButton extends MenuButton { @Override public int getStringWidth(String string) { if(Settings.customGuiFont) { - return (int) rip.athena.client.utils.font.FontManager.getNunitoBold(25).width(string); + return (int) rip.athena.client.utils.font.FontManager.getProductSansBold(35).width(string); } else { return Minecraft.getMinecraft().fontRendererObj.getStringWidth(string); } diff --git a/src/main/java/rip/athena/client/ui/clickgui/components/mods/FeatureText.java b/src/main/java/rip/athena/client/ui/clickgui/components/mods/FeatureText.java index 8310614b..71b9402c 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/components/mods/FeatureText.java +++ b/src/main/java/rip/athena/client/ui/clickgui/components/mods/FeatureText.java @@ -1,6 +1,7 @@ package rip.athena.client.ui.clickgui.components.mods; import net.minecraft.client.Minecraft; +import net.minecraft.client.renderer.GlStateManager; import rip.athena.client.Athena; import rip.athena.api.font.FontManager; import rip.athena.client.ui.framework.components.MenuLabel; @@ -38,7 +39,13 @@ public class FeatureText extends MenuLabel { @Override public void drawText(String text, int x, int y, int color) { if(Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getNunitoBold(30).drawString(text, x, y, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.pushMatrix(); + GlStateManager.translate(x, y, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-x, -y, 0); + + rip.athena.client.utils.font.FontManager.getProductSansRegular(15).drawString(text, x, y, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.popMatrix(); } else { Minecraft.getMinecraft().fontRendererObj.drawString(text, x, y, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); } diff --git a/src/main/java/rip/athena/client/ui/clickgui/components/mods/MenuModKeybind.java b/src/main/java/rip/athena/client/ui/clickgui/components/mods/MenuModKeybind.java index b0233ec6..921ddbe9 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/components/mods/MenuModKeybind.java +++ b/src/main/java/rip/athena/client/ui/clickgui/components/mods/MenuModKeybind.java @@ -211,7 +211,12 @@ public class MenuModKeybind extends MenuComponent { @Override public void drawText(String text, int x, int y, int color) { if(Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getProductSansRegular(30).drawString(text, x, y, color); + GlStateManager.pushMatrix(); + GlStateManager.translate(x, y,0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-x, -y, 0); + rip.athena.client.utils.font.FontManager.getProductSansRegular(18).drawString(text, x - 3, y, color); + GlStateManager.popMatrix(); } else { Minecraft.getMinecraft().fontRendererObj.drawString(text, x, y, color); } diff --git a/src/main/java/rip/athena/client/ui/clickgui/components/mods/MenuModList.java b/src/main/java/rip/athena/client/ui/clickgui/components/mods/MenuModList.java index 578bb25d..e0943376 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/components/mods/MenuModList.java +++ b/src/main/java/rip/athena/client/ui/clickgui/components/mods/MenuModList.java @@ -115,14 +115,8 @@ public class MenuModList extends MenuDropdown { GlStateManager.color(1,1,1); RoundedUtils.drawRoundedRect(x, y, x + width, y + height, 12.0f, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getSecondColor()); - //RoundedUtils.drawRoundedRect(x + 1, y + 1, x + width - 1, y + height - 1, 12.0f, new Color(35, 35, 35, 255).getRGB()); RoundedUtils.drawRoundedGradientOutlineCorner(x, y, x + width, y + height, 1, 12, Athena.INSTANCE.getThemeManager().getTheme().getFirstColor().getRGB(), Athena.INSTANCE.getThemeManager().getTheme().getFirstColor().getRGB(), Athena.INSTANCE.getThemeManager().getTheme().getSecondColor().getRGB(), Athena.INSTANCE.getThemeManager().getTheme().getSecondColor().getRGB()); - - /*drawHorizontalLine(x, y, width + 1, 1, lineColor); - drawVerticalLine(x, y + 1, height - 1, 1, lineColor); - drawHorizontalLine(x, y + height, width + 1, 1, lineColor); - drawVerticalLine(x + width, y + 1, height - 1, 1, lineColor);*/ int mouseX = parent.getMouseX(); int mouseY = parent.getMouseY(); @@ -133,8 +127,6 @@ public class MenuModList extends MenuDropdown { backgroundColor = defBg; } - //rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x, y, cursorWidth, height + 1, popupColor); - //rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 1, y + 1, cursorWidth - 2, height - 1, backgroundColor); drawText("<", x + (cursorWidth / 2) - getStringWidth("<") / 2, y + height / 2 - getStringHeight("<") / 2, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); if(mouseX < x + width - cursorWidth - 1) { @@ -143,8 +135,6 @@ public class MenuModList extends MenuDropdown { backgroundColor = cache; } - //rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + width - cursorWidth, y, cursorWidth, height + 1, popupColor); - //rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + width - cursorWidth + 1, y + 1, cursorWidth - 2, height - 1, backgroundColor); drawText(">", x + width - cursorWidth + 3 + (cursorWidth / 2) - getStringWidth(">") / 2, y + height / 2 - getStringHeight(">") / 2, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); String text = values[index].toUpperCase(); @@ -156,7 +146,13 @@ public class MenuModList extends MenuDropdown { @Override public void drawText(String text, int x, int y, int color) { if(Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getNunito(25).drawString(text, x, y, color); + GlStateManager.pushMatrix(); + GlStateManager.translate(x, y, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-x, -y, 0); + + rip.athena.client.utils.font.FontManager.getProductSansRegular(15).drawString(text, x, y, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.popMatrix(); } else { Minecraft.getMinecraft().fontRendererObj.drawString(text, x, y, color); } @@ -165,7 +161,7 @@ public class MenuModList extends MenuDropdown { @Override public int getStringWidth(String string) { if(Settings.customGuiFont) { - return (int) rip.athena.client.utils.font.FontManager.getNunito(25).width(string); + return (int) rip.athena.client.utils.font.FontManager.getProductSansRegular(30).width(string); } else { return Minecraft.getMinecraft().fontRendererObj.getStringWidth(string); } diff --git a/src/main/java/rip/athena/client/ui/clickgui/components/mods/MenuModSlider.java b/src/main/java/rip/athena/client/ui/clickgui/components/mods/MenuModSlider.java index 904a8428..beb25a0c 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/components/mods/MenuModSlider.java +++ b/src/main/java/rip/athena/client/ui/clickgui/components/mods/MenuModSlider.java @@ -115,7 +115,7 @@ public class MenuModSlider extends MenuSlider { cursorPos = cursorWidth; } - DrawUtils.drawRoundedRect(x + cursorPos - cursorWidth + 10, y, x + cursorPos, y + height, 2, -1); + DrawUtils.drawRoundedRect(x + cursorPos - cursorWidth + 7, y, x + cursorPos, y + height, 2, -1); // DrawUtils.drawRoundedRect(x + cursorPos - cursorWidth, y, x + cursorWidth + 2, y + height + 1, 4, linePopupColor); // DrawUtils.drawRoundedRect(x + 1 + cursorPos - cursorWidth, y + 1, cursorWidth, height - 1, 4, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); diff --git a/src/main/java/rip/athena/client/ui/clickgui/components/mods/ModCategoryButton.java b/src/main/java/rip/athena/client/ui/clickgui/components/mods/ModCategoryButton.java index 78297833..e146789b 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/components/mods/ModCategoryButton.java +++ b/src/main/java/rip/athena/client/ui/clickgui/components/mods/ModCategoryButton.java @@ -91,17 +91,22 @@ public class ModCategoryButton extends MenuButton { } if (Settings.customGuiFont) { + GlStateManager.pushMatrix(); + GlStateManager.translate(x + (width / 2 - getStringWidth(text) / 2), y + height / 2 - (getStringHeight(text) / 2) - 3, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-x - (width / 2 - getStringWidth(text) / 2), -y - height / 2 + (getStringHeight(text) / 2) + 3, 0); if (text.equalsIgnoreCase("EDIT HUD")) { - rip.athena.client.utils.font.FontManager.getProductSansBold(35).drawString(text, x + (width / 2 - getStringWidth(text) / 2) - 15, y + height / 2 - (getStringHeight(text) / 2) - 3, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + rip.athena.client.utils.font.FontManager.getProductSansRegular(15).drawString(text, x + (width / 2 - getStringWidth(text) / 2) - 5, y + height / 2 - (getStringHeight(text) / 2) - 1, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); } else { - rip.athena.client.utils.font.FontManager.getProductSansBold(25).drawString(text, x + (width / 2 - getStringWidth(text) / 2), y + height / 2 - (getStringHeight(text) / 2) - 3, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + rip.athena.client.utils.font.FontManager.getProductSansRegular(15).drawString(text, x + (width / 2 - getStringWidth(text) / 2) - 2, y + height / 2 - (getStringHeight(text) / 2) - 2, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); } + GlStateManager.popMatrix(); } else { Minecraft.getMinecraft().fontRendererObj.drawString(text, x + (width / 2 - getStringWidth(text) / 2), y + height / 2 - (getStringHeight(text) / 2) - 3, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); } if (text.equalsIgnoreCase("EDIT HUD")) { - DrawUtils.drawImage(image, x + 25, y + 3, 25, 25); + DrawUtils.drawImage(image, x + 35, y + 3, 25, 25); } } //rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x, y, width - 10, height, backgroundColor); diff --git a/src/main/java/rip/athena/client/ui/clickgui/components/mods/ModuleBox.java b/src/main/java/rip/athena/client/ui/clickgui/components/mods/ModuleBox.java index 76b0734a..f1d763af 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/components/mods/ModuleBox.java +++ b/src/main/java/rip/athena/client/ui/clickgui/components/mods/ModuleBox.java @@ -1,23 +1,23 @@ package rip.athena.client.ui.clickgui.components.mods; -import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.util.ResourceLocation; +import rip.athena.api.font.FontManager; import rip.athena.api.module.Module; import rip.athena.client.Athena; -import rip.athena.api.font.FontManager; +import rip.athena.client.modules.other.Settings; +import rip.athena.client.ui.clickgui.IngameMenu; import rip.athena.client.ui.framework.MenuComponent; import rip.athena.client.ui.framework.draw.ButtonState; import rip.athena.client.ui.framework.draw.DrawType; -import rip.athena.client.ui.clickgui.IngameMenu; -import rip.athena.client.modules.other.Settings; import rip.athena.client.utils.render.ColorUtil; import rip.athena.client.utils.render.DrawUtils; import rip.athena.client.utils.render.RoundedUtils; import java.awt.*; -import java.util.*; +import java.util.ArrayList; import java.util.List; +import java.util.Objects; /** * @author Athena Development @@ -189,12 +189,14 @@ public class ModuleBox extends MenuComponent { for (String line : lines) { if(Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getNunitoBold(30).drawString(line, x + (float) width / 2 - (double) rip.athena.client.utils.font.FontManager.getNunitoBold(30).width(line) / 2, yPos, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.pushMatrix(); + GlStateManager.translate(x - width / 2, yPos, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-x, -yPos, 0); + rip.athena.client.utils.font.FontManager.getProductSansBold(15).drawString(line, x + (float) width / 2 - (double) rip.athena.client.utils.font.FontManager.getProductSansBold(15).width(line) / 2, yPos, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.popMatrix(); //FontManager.baloo30.drawString(line, x + (float) width / 2 - FontManager.baloo30.getStringWidth(line) / 2, yPos, textColor); yPos += FontManager.baloo30.getHeight(line); - } else { - Minecraft.getMinecraft().fontRendererObj.drawString(line, (int) (x + (float) width / 2 - Minecraft.getMinecraft().fontRendererObj.getStringWidth(line) / 2), yPos, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); - yPos += Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT; } } @@ -215,10 +217,14 @@ public class ModuleBox extends MenuComponent { String text = module.isToggled() ? "ENABLED" : "DISABLED"; if(Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getNunitoBold(25).drawString(text, x + (float) width / 2 - (double) rip.athena.client.utils.font.FontManager.getNunitoBold(25).width(text) / 2, y + height - 10 - 15, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.pushMatrix(); + GlStateManager.translate(x - width / 2, y + height - 10 - 15, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-x, -y - height + 10 + 15, 0); + + rip.athena.client.utils.font.FontManager.getProductSansBold(15).drawString(text, x + (float) width / 2 - (double) rip.athena.client.utils.font.FontManager.getProductSansBold(15).width(text) / 2, y + height - 10 - 14.5f, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.popMatrix(); //rip.athena.client.utils.font.FontManager.getProductSansRegular(30).drawString(text, x + (float) width / 2 - rip.athena.client.utils.font.FontManager.getProductSansRegular(30).width(text) / 2, y + height - 10 - 15, -1); - } else { - Minecraft.getMinecraft().fontRendererObj.drawString(text, (int) (x + (float) width / 2 - Minecraft.getMinecraft().fontRendererObj.getStringWidth(text) / 2), y + height - 10 - 15, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); } if (!module.getEntries().isEmpty()) { drawColor = defaultColor; diff --git a/src/main/java/rip/athena/client/ui/clickgui/components/mods/SearchTextfield.java b/src/main/java/rip/athena/client/ui/clickgui/components/mods/SearchTextfield.java index 13103651..ea859521 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/components/mods/SearchTextfield.java +++ b/src/main/java/rip/athena/client/ui/clickgui/components/mods/SearchTextfield.java @@ -3,16 +3,15 @@ package rip.athena.client.ui.clickgui.components.mods; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.util.ResourceLocation; +import org.lwjgl.input.Keyboard; import rip.athena.client.Athena; -import rip.athena.api.font.FontManager; +import rip.athena.client.modules.other.Settings; +import rip.athena.client.ui.clickgui.IngameMenu; import rip.athena.client.ui.framework.TextPattern; import rip.athena.client.ui.framework.components.MenuTextField; import rip.athena.client.ui.framework.draw.ButtonState; import rip.athena.client.ui.framework.draw.DrawType; -import rip.athena.client.ui.clickgui.IngameMenu; -import rip.athena.client.modules.other.Settings; import rip.athena.client.utils.render.DrawUtils; -import org.lwjgl.input.Keyboard; import rip.athena.client.utils.render.RoundedUtils; import java.awt.*; @@ -97,7 +96,7 @@ public class SearchTextfield extends MenuTextField { int labelWidth; if(Settings.customGuiFont) { - labelWidth = (int) rip.athena.client.utils.font.FontManager.getProductSansRegular(30).width(textToDraw + 1); + labelWidth = (int) rip.athena.client.utils.font.FontManager.getProductSansRegular(20).width(textToDraw + 1); } else { labelWidth = Minecraft.getMinecraft().fontRendererObj.getStringWidth(textToDraw + 1); } @@ -107,7 +106,7 @@ public class SearchTextfield extends MenuTextField { if(comp < index){ textToDraw = textToDraw.substring(1); if(Settings.customGuiFont) { - labelWidth = (int) rip.athena.client.utils.font.FontManager.getProductSansLight(30).width(textToDraw + 1); + labelWidth = (int) rip.athena.client.utils.font.FontManager.getProductSansRegular(20).width(textToDraw + 1); } else { labelWidth = Minecraft.getMinecraft().fontRendererObj.getStringWidth(textToDraw + 1); } @@ -115,7 +114,7 @@ public class SearchTextfield extends MenuTextField { } else if(comp > index){ textToDraw = textToDraw.substring(0, textToDraw.length() - 1); if(Settings.customGuiFont) { - labelWidth = (int) rip.athena.client.utils.font.FontManager.getProductSansLight(30).width(textToDraw + 1); + labelWidth = (int) rip.athena.client.utils.font.FontManager.getProductSansRegular(20).width(textToDraw + 1); } else { labelWidth = Minecraft.getMinecraft().fontRendererObj.getStringWidth(textToDraw + 1); } @@ -136,13 +135,17 @@ public class SearchTextfield extends MenuTextField { int textHeight; if(Settings.customGuiFont) { - textHeight = (int) FontManager.baloo17.getHeight(textToDraw); - drawVerticalLine(x + 10 + (int)rip.athena.client.utils.font.FontManager.getProductSansRegular(30).width(textToDraw.substring(0, toRender)) + 1, y + height / 2 - textHeight / 2, textHeight, 1, textColor); + textHeight = (int) rip.athena.client.utils.font.FontManager.getProductSansRegular(20).height(); + GlStateManager.pushMatrix(); + GlStateManager.translate(x - 10, y + height / 2 - textHeight / 2, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-x, -y - height + 10 + 8, 0); + drawVerticalLine(x + 10 + (int)rip.athena.client.utils.font.FontManager.getProductSansRegular(20).width(textToDraw.substring(0, toRender)) + 1, y + height / 2 - textHeight / 2, textHeight, 1, textColor); + GlStateManager.popMatrix(); } else { textHeight = Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT; drawVerticalLine(x + 10 + (int)Minecraft.getMinecraft().fontRendererObj.getStringWidth(textToDraw.substring(0, toRender)) + 1, y + height / 2 - textHeight / 2, textHeight, 1, textColor); } - } int renderIndex = comp; @@ -162,7 +165,12 @@ public class SearchTextfield extends MenuTextField { } if(Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getProductSansRegular(30).drawString(textToDraw, x + 10 + minOffset + xAdd, y + 2 + (float) height / 2 - (float) (int) rip.athena.client.utils.font.FontManager.getNunito(20).height() / 2, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.pushMatrix(); + GlStateManager.translate(x + 10 + minOffset + xAdd, y + (float) height / 2 - (float) (int) rip.athena.client.utils.font.FontManager.getProductSansRegular(20).height() / 2, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-x - 10 - minOffset - xAdd, -y - height + 10 + 8, 0); + rip.athena.client.utils.font.FontManager.getProductSansRegular(20).drawString(textToDraw, x + 10 + minOffset + xAdd, y + 2 + (float) height / 2 - (float) (int) rip.athena.client.utils.font.FontManager.getProductSansRegular(20).height() / 2, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.popMatrix(); } else { Minecraft.getMinecraft().fontRendererObj.drawString(textToDraw, x + 10 + minOffset + xAdd, (int) (y + (float) height / 2 - (float) (int) Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT / 2), Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); } diff --git a/src/main/java/rip/athena/client/ui/clickgui/components/profiles/ProfilesBase.java b/src/main/java/rip/athena/client/ui/clickgui/components/profiles/ProfilesBase.java index f4edbe68..85ff07dd 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/components/profiles/ProfilesBase.java +++ b/src/main/java/rip/athena/client/ui/clickgui/components/profiles/ProfilesBase.java @@ -3,13 +3,13 @@ package rip.athena.client.ui.clickgui.components.profiles; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.GlStateManager; import rip.athena.api.font.FontManager; +import rip.athena.client.Athena; +import rip.athena.client.modules.other.Settings; +import rip.athena.client.ui.clickgui.IngameMenu; import rip.athena.client.ui.framework.MenuComponent; import rip.athena.client.ui.framework.MenuPriority; import rip.athena.client.ui.framework.draw.ButtonState; import rip.athena.client.ui.framework.draw.DrawType; -import rip.athena.client.ui.clickgui.IngameMenu; -import rip.athena.client.modules.other.Settings; -import rip.athena.client.utils.render.ColorUtil; import rip.athena.client.utils.render.RoundedUtils; import java.awt.*; @@ -60,9 +60,7 @@ public class ProfilesBase extends MenuComponent { GlStateManager.color(1,1,1); - //RoundedUtils.drawRoundedRect(x, y, x + width, y + height, 12.0f, new Color(50,50,50,255).getRGB()); - //RoundedUtils.drawGradientRound(x, y, width, height, 6f, ColorUtil.getClientColor(0, 255), ColorUtil.getClientColor(90, 255), ColorUtil.getClientColor(180, 255), ColorUtil.getClientColor(270, 255)); - RoundedUtils.drawRoundedRect(x + 1, y + 1, x + width - 1, y + height - 1, 12.0f, new Color(35,35,35,255).getRGB()); + RoundedUtils.drawRoundedRect(x + 1, y + 1, x + width - 1, y + height - 1, 12.0f, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getSecondColor()); drawText(text, x + width / 2 - getStringWidth(text) / 2, y + 30, textColor); } diff --git a/src/main/java/rip/athena/client/ui/clickgui/pages/MacrosPage.java b/src/main/java/rip/athena/client/ui/clickgui/pages/MacrosPage.java index 8783333f..ef9cc00f 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/pages/MacrosPage.java +++ b/src/main/java/rip/athena/client/ui/clickgui/pages/MacrosPage.java @@ -164,7 +164,12 @@ public class MacrosPage extends Page { drawVerticalLine(menu.getX() + 215, y + height - 30, height + 432, 3, new Color(0,0,0,0).getRGB()); if(Settings.customGuiFont) { - FontManager.getNunitoBold(30).drawString("MACROS", menu.getX() + 235, menu.getY() + 80, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.pushMatrix(); + GlStateManager.translate(menu.getX() - 235, menu.getY() - 80, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-menu.getX(), -menu.getY(), 0); + rip.athena.client.utils.font.FontManager.getProductSansRegular(20).drawString("MACROS", menu.getX() + 235, menu.getY() + 80, IngameMenu.MENU_HEADER_TEXT_COLOR); + GlStateManager.popMatrix(); } else { Minecraft.getMinecraft().fontRendererObj.drawString("MACROS", menu.getX() + 235, menu.getY() + 80, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); } diff --git a/src/main/java/rip/athena/client/ui/clickgui/pages/ModsPage.java b/src/main/java/rip/athena/client/ui/clickgui/pages/ModsPage.java index f2f59994..a0a24441 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/pages/ModsPage.java +++ b/src/main/java/rip/athena/client/ui/clickgui/pages/ModsPage.java @@ -83,8 +83,13 @@ public class ModsPage extends Page { if (modCategory != null) { if (Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getProductSansRegular(30).drawString(activeModule != null ? activeModule.getName().toUpperCase() : modCategory.getText(), menu.getX() + 255, menu.getY() + 20, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); - rip.athena.client.utils.font.FontManager.getProductSansRegular(20).drawString("Configure build-in client mods", menu.getX() + 255, menu.getY() + 35, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.pushMatrix(); + GlStateManager.translate(menu.getX() - 255, menu.getY() - 5, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-menu.getX() + 255, -menu.getY(), 0); + rip.athena.client.utils.font.FontManager.getProductSansRegular(20).drawString(activeModule != null ? activeModule.getName().toUpperCase() : modCategory.getText(), menu.getX(), menu.getY() + 10, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + rip.athena.client.utils.font.FontManager.getProductSansRegular(15).drawString("Configure build-in client mods", menu.getX(), menu.getY() + 20, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.popMatrix(); } else { mc.fontRendererObj.drawString(activeModule != null ? "SETTINGS | " : modCategory.getText(), menu.getX() + 255, menu.getY() + 25, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); } diff --git a/src/main/java/rip/athena/client/ui/clickgui/pages/ProfilesPage.java b/src/main/java/rip/athena/client/ui/clickgui/pages/ProfilesPage.java index 44717059..a0bbd3b2 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/pages/ProfilesPage.java +++ b/src/main/java/rip/athena/client/ui/clickgui/pages/ProfilesPage.java @@ -1,27 +1,27 @@ package rip.athena.client.ui.clickgui.pages; +import net.minecraft.client.Minecraft; import net.minecraft.client.gui.GuiScreen; +import net.minecraft.client.renderer.GlStateManager; import org.apache.commons.lang3.RandomStringUtils; import org.json.JSONException; -import rip.athena.client.Athena; import rip.athena.api.config.save.Config; import rip.athena.api.font.FontManager; -import rip.athena.client.ui.clickgui.components.macros.SimpleTextButton; -import rip.athena.client.ui.clickgui.components.profiles.ProfilesBase; -import rip.athena.client.ui.framework.Menu; -import rip.athena.client.ui.framework.TextPattern; -import rip.athena.client.ui.clickgui.IngameMenu; -import rip.athena.client.ui.clickgui.Page; -import rip.athena.client.ui.clickgui.components.macros.MacroButton; -import rip.athena.client.ui.clickgui.components.macros.MacroTextfield; -import rip.athena.client.ui.clickgui.components.mods.ModCategoryButton; -import rip.athena.client.ui.clickgui.components.mods.ModScrollPane; -import rip.athena.client.ui.clickgui.components.profiles.ProfilesBlueButton; -import net.minecraft.client.Minecraft; +import rip.athena.client.Athena; import rip.athena.client.modules.other.Settings; import rip.athena.client.requests.ContentType; import rip.athena.client.requests.WebRequest; import rip.athena.client.requests.WebRequestResult; +import rip.athena.client.ui.clickgui.IngameMenu; +import rip.athena.client.ui.clickgui.Page; +import rip.athena.client.ui.clickgui.components.macros.MacroButton; +import rip.athena.client.ui.clickgui.components.macros.MacroTextfield; +import rip.athena.client.ui.clickgui.components.macros.SimpleTextButton; +import rip.athena.client.ui.clickgui.components.mods.ModScrollPane; +import rip.athena.client.ui.clickgui.components.profiles.ProfilesBase; +import rip.athena.client.ui.clickgui.components.profiles.ProfilesBlueButton; +import rip.athena.client.ui.framework.Menu; +import rip.athena.client.ui.framework.TextPattern; import java.awt.*; import java.io.IOException; @@ -236,14 +236,23 @@ public class ProfilesPage extends Page { drawVerticalLine(menu.getX() + 215, y + height - 30, height + 432, 3, new Color(0,0,0,0).getRGB()); if(Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getNunitoBold(30).drawString("PROFILES", menu.getX() + 235, menu.getY() + 80, IngameMenu.MENU_HEADER_TEXT_COLOR); + GlStateManager.pushMatrix(); + GlStateManager.translate(menu.getX() - 235, menu.getY() - 80, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-menu.getX(), -menu.getY(), 0); + rip.athena.client.utils.font.FontManager.getProductSansRegular(20).drawString("PROFILES", menu.getX() + 235, menu.getY() + 80, IngameMenu.MENU_HEADER_TEXT_COLOR); + GlStateManager.popMatrix(); } else { Minecraft.getMinecraft().fontRendererObj.drawString("PROFILES", menu.getX() + 235, menu.getY() + 80, IngameMenu.MENU_HEADER_TEXT_COLOR); } - if(Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getProductSansRegular(30).drawString("CREATE NEW PROFILE", menu.getX() + menu.getWidth() - (float) width / 2 - rip.athena.client.utils.font.FontManager.getProductSansRegular(30).width("CREATE NEW PROFILE") / 2, y + (float) height / 2 - FontManager.baloo17.getHeight("CREATE NEW PROFILE") / 2, IngameMenu.MENU_HEADER_TEXT_COLOR); + GlStateManager.pushMatrix(); + GlStateManager.translate(menu.getX() - menu.getWidth() + (float) width / 2 + rip.athena.client.utils.font.FontManager.getProductSansRegular(20).width("CREATE NEW PROFILE") / 2,y - (float) height / 2 - FontManager.baloo17.getHeight("CREATE NEW PROFILE") / 2, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-menu.getX(), -y - 5 + (float) height / 2 + rip.athena.client.utils.font.FontManager.getProductSansRegular(20).height() / 2, 0); + rip.athena.client.utils.font.FontManager.getProductSansRegular(20).drawString("CREATE NEW PROFILE", menu.getX() + menu.getWidth() - (float) width / 2 - rip.athena.client.utils.font.FontManager.getProductSansRegular(30).width("CREATE NEW PROFILE") / 2, y + (float) height / 2 - FontManager.baloo17.getHeight("CREATE NEW PROFILE") / 2, IngameMenu.MENU_HEADER_TEXT_COLOR); + GlStateManager.popMatrix(); } else { mc.fontRendererObj.drawString("CREATE NEW PROFILE", (int) (menu.getX() + menu.getWidth() - (float) width / 2 - mc.fontRendererObj.getStringWidth("CREATE NEW PROFILE") / 2), (int) (y + (float) height / 2 - mc.fontRendererObj.FONT_HEIGHT / 2), IngameMenu.MENU_HEADER_TEXT_COLOR); } @@ -251,7 +260,12 @@ public class ProfilesPage extends Page { y += 60; if(Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getProductSansRegular(30).drawString("ENTER NAME", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR); + GlStateManager.pushMatrix(); + GlStateManager.translate(x,y, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-x, -y, 0); + rip.athena.client.utils.font.FontManager.getProductSansRegular(15).drawString("ENTER NAME", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR); + GlStateManager.popMatrix(); } else { mc.fontRendererObj.drawString("ENTER NAME", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR); } @@ -259,7 +273,12 @@ public class ProfilesPage extends Page { y += 120; if(Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getProductSansRegular(30).drawString("DOWNLOAD PROFILE", menu.getX() + menu.getWidth() - (float) width / 2 - rip.athena.client.utils.font.FontManager.getProductSansRegular(30).width("DOWNLOAD PROFILE") / 2, y + (float) height / 2 - FontManager.baloo17.getHeight("DOWNLOAD PROFILE") / 2, IngameMenu.MENU_HEADER_TEXT_COLOR); + GlStateManager.pushMatrix(); + GlStateManager.translate(menu.getX() - menu.getWidth() + (float) width / 2 + rip.athena.client.utils.font.FontManager.getProductSansRegular(20).width("DOWNLOAD PROFILE") / 2,y - (float) height / 2 - rip.athena.client.utils.font.FontManager.getProductSansRegular(20).height() / 2, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-menu.getX(), -y - 10 + (float) height / 2 + rip.athena.client.utils.font.FontManager.getProductSansRegular(20).height() / 2, 0); + rip.athena.client.utils.font.FontManager.getProductSansRegular(20).drawString("DOWNLOAD PROFILE", menu.getX() + menu.getWidth() - (float) width / 2 - rip.athena.client.utils.font.FontManager.getProductSansRegular(30).width("DOWNLOAD PROFILE") / 2, y + (float) height / 2 - FontManager.baloo17.getHeight("DOWNLOAD PROFILE") / 2, IngameMenu.MENU_HEADER_TEXT_COLOR); + GlStateManager.popMatrix(); } else { mc.fontRendererObj.drawString("DOWNLOAD PROFILE", (int) (menu.getX() + menu.getWidth() - (float) width / 2 - mc.fontRendererObj.getStringWidth("DOWNLOAD PROFILE") / 2), (int) (y + (float) height / 2 - mc.fontRendererObj.FONT_HEIGHT / 2), IngameMenu.MENU_HEADER_TEXT_COLOR); } @@ -267,7 +286,12 @@ public class ProfilesPage extends Page { y += 50; if(Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getProductSansRegular(30).drawString("PROFILE CODE", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR); + GlStateManager.pushMatrix(); + GlStateManager.translate(x,y, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-x, -y, 0); + rip.athena.client.utils.font.FontManager.getProductSansRegular(15).drawString("PROFILE CODE", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR); + GlStateManager.popMatrix(); } else { mc.fontRendererObj.drawString("PROFILE CODE", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR); } diff --git a/src/main/java/rip/athena/client/ui/clickgui/pages/ScreenshotsPage.java b/src/main/java/rip/athena/client/ui/clickgui/pages/ScreenshotsPage.java new file mode 100644 index 00000000..b8402ad5 --- /dev/null +++ b/src/main/java/rip/athena/client/ui/clickgui/pages/ScreenshotsPage.java @@ -0,0 +1,56 @@ +package rip.athena.client.ui.clickgui.pages; + +import net.minecraft.client.Minecraft; +import net.minecraft.client.renderer.GlStateManager; +import rip.athena.client.ui.clickgui.IngameMenu; +import rip.athena.client.ui.clickgui.Page; +import rip.athena.client.ui.framework.Menu; + +import java.awt.*; + +public class ScreenshotsPage extends Page { + + public ScreenshotsPage(Minecraft mc, Menu menu, IngameMenu parent) { + super(mc, menu, parent); + } + + @Override + public void onInit() { + } + + @Override + public void onRender() { + int y = menu.getY() + 59; + int height = 32; + GlStateManager.color(1,1,1); + + drawVerticalLine(menu.getX() + 215, y + height - 30, height + 432, 3, new Color(0,0,0,0).getRGB()); + + GlStateManager.pushMatrix(); + GlStateManager.translate(menu.getX() - 235, menu.getY() - 80, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-menu.getX(), -menu.getY(), 0); + rip.athena.client.utils.font.FontManager.getProductSansRegular(20).drawString("SCREENSHOTS", menu.getX() + 235, menu.getY() + 80, IngameMenu.MENU_HEADER_TEXT_COLOR); + GlStateManager.popMatrix(); + } + + @Override + public void onLoad() { + + } + + @Override + public void onUnload() { + + } + + @Override + public void onOpen() { + + } + + @Override + public void onClose() { + + } +} diff --git a/src/main/java/rip/athena/client/ui/clickgui/pages/ThemesPage.java b/src/main/java/rip/athena/client/ui/clickgui/pages/ThemesPage.java index 0a73c6d1..7412dd6d 100644 --- a/src/main/java/rip/athena/client/ui/clickgui/pages/ThemesPage.java +++ b/src/main/java/rip/athena/client/ui/clickgui/pages/ThemesPage.java @@ -1,6 +1,7 @@ package rip.athena.client.ui.clickgui.pages; import net.minecraft.client.Minecraft; +import net.minecraft.client.renderer.GlStateManager; import rip.athena.client.Athena; import rip.athena.client.ui.clickgui.IngameMenu; import rip.athena.client.ui.clickgui.Page; @@ -48,7 +49,12 @@ public class ThemesPage extends Page { int height = 32; if(Settings.customGuiFont) { - rip.athena.client.utils.font.FontManager.getNunitoBold(30).drawString("THEMES | " + Athena.INSTANCE.getThemeManager().getTheme() + ", " + Athena.INSTANCE.getThemeManager().getPrimaryTheme(), menu.getX() + 235, menu.getY() + 80, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); + GlStateManager.pushMatrix(); + GlStateManager.translate(menu.getX() - 235, menu.getY() - 80, 0); + GlStateManager.scale(2, 2, 2); + GlStateManager.translate(-menu.getX(), -menu.getY(), 0); + rip.athena.client.utils.font.FontManager.getProductSansRegular(20).drawString("THEMES | " + Athena.INSTANCE.getThemeManager().getTheme() + ", " + Athena.INSTANCE.getThemeManager().getPrimaryTheme(), menu.getX() + 235, menu.getY() + 80, IngameMenu.MENU_HEADER_TEXT_COLOR); + GlStateManager.popMatrix(); } else { Minecraft.getMinecraft().fontRendererObj.drawString("THEMES", menu.getX() + 235, menu.getY() + 80, Athena.INSTANCE.getThemeManager().getPrimaryTheme().getTextColor()); } diff --git a/src/main/java/rip/athena/client/ui/hud/HUDManager.java b/src/main/java/rip/athena/client/ui/hud/HUDManager.java index f317dac3..281da4e8 100644 --- a/src/main/java/rip/athena/client/ui/hud/HUDManager.java +++ b/src/main/java/rip/athena/client/ui/hud/HUDManager.java @@ -22,11 +22,14 @@ public class HUDManager { private final List elements; public HUDManager() { + Athena.INSTANCE.sendInitializationMessage("HUD Manager", false); + elements = new ArrayList<>(); for(Module mod : Athena.INSTANCE.getModuleRepository().getModules()) { elements.addAll(mod.getHUDElements()); } + Athena.INSTANCE.sendInitializationMessage("HUD Manager", true); } @SubscribeEvent diff --git a/src/main/java/rip/athena/client/ui/notifications/NotificationManager.java b/src/main/java/rip/athena/client/ui/notifications/NotificationManager.java index 450c1c08..db0322c8 100644 --- a/src/main/java/rip/athena/client/ui/notifications/NotificationManager.java +++ b/src/main/java/rip/athena/client/ui/notifications/NotificationManager.java @@ -18,11 +18,14 @@ public class NotificationManager { private Thread removalThread; public NotificationManager() { + Athena.INSTANCE.sendInitializationMessage("Notification Manager", false); + notifications = new ArrayList<>(); removalThread = new Thread(new NotiRemovalThread(notifications)); removalThread.start(); Athena.INSTANCE.getEventBus().register(this); + Athena.INSTANCE.sendInitializationMessage("Notification Manager", true); } @SubscribeEvent diff --git a/src/main/java/rip/athena/client/utils/discord/DiscordRPC.java b/src/main/java/rip/athena/client/utils/discord/DiscordRPC.java index 376ac0fe..69bd4fbc 100644 --- a/src/main/java/rip/athena/client/utils/discord/DiscordRPC.java +++ b/src/main/java/rip/athena/client/utils/discord/DiscordRPC.java @@ -26,6 +26,8 @@ public class DiscordRPC { public DiscordRPC() { if(System.getProperty("os.name").equalsIgnoreCase("win")) { try { + Athena.INSTANCE.sendInitializationMessage("Discord RPC", false); + File discordLibrary = downloadNativeLibrary(); if (discordLibrary == null) { System.err.println("Failed to download Discord SDK."); @@ -34,6 +36,9 @@ public class DiscordRPC { // Initialize the Core Core.init(discordLibrary); canLoad = true; + + Athena.INSTANCE.sendInitializationMessage("Discord RPC", true); + start(); } catch (Exception e) { e.printStackTrace(); diff --git a/src/main/java/rip/athena/client/utils/input/KeybindManager.java b/src/main/java/rip/athena/client/utils/input/KeybindManager.java index 26fd562c..c78c6413 100644 --- a/src/main/java/rip/athena/client/utils/input/KeybindManager.java +++ b/src/main/java/rip/athena/client/utils/input/KeybindManager.java @@ -2,9 +2,9 @@ package rip.athena.client.utils.input; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.GuiScreen; +import rip.athena.api.event.SubscribeEvent; import rip.athena.api.module.Module; import rip.athena.client.Athena; -import rip.athena.api.event.SubscribeEvent; import rip.athena.client.events.input.KeyDownEvent; import rip.athena.client.events.input.KeyUpEvent; import rip.athena.client.modules.render.GUIMod; @@ -60,7 +60,6 @@ public class KeybindManager { if (module instanceof GUIMod) { module.setEnabled(true); - continue; } if(isInvalidScreen(Minecraft.getMinecraft().currentScreen)) return; diff --git a/src/main/java/rip/athena/client/utils/render/DrawUtils.java b/src/main/java/rip/athena/client/utils/render/DrawUtils.java index 2c8169ef..3285428e 100644 --- a/src/main/java/rip/athena/client/utils/render/DrawUtils.java +++ b/src/main/java/rip/athena/client/utils/render/DrawUtils.java @@ -27,7 +27,6 @@ import static org.lwjgl.opengl.GL11.GL_SRC_ALPHA; public enum DrawUtils { - BLACK(-16711423), BLUE(-12028161), DARKBLUE(-12621684), diff --git a/src/main/java/rip/athena/client/utils/render/RoundedUtils.java b/src/main/java/rip/athena/client/utils/render/RoundedUtils.java index 3214a376..bd7e5f91 100644 --- a/src/main/java/rip/athena/client/utils/render/RoundedUtils.java +++ b/src/main/java/rip/athena/client/utils/render/RoundedUtils.java @@ -1,11 +1,8 @@ package rip.athena.client.utils.render; import net.minecraft.client.Minecraft; -import net.minecraft.client.gui.FontRenderer; import net.minecraft.client.gui.ScaledResolution; import net.minecraft.client.renderer.GlStateManager; - -import org.lwjgl.opengl.GL11; import rip.athena.client.utils.shader.ShaderUtil; import java.awt.*; @@ -16,7 +13,6 @@ import static org.lwjgl.opengl.GL11.*; public class RoundedUtils { final static Minecraft mc = Minecraft.getMinecraft(); - final static FontRenderer fr = mc.fontRendererObj; private static final ShaderUtil roundedGradientShader = new ShaderUtil("roundedRectGradient"); private static ShaderUtil roundedTexturedShader = new ShaderUtil("roundRectTexture"); @@ -212,6 +208,7 @@ public class RoundedUtils { glPopAttrib(); GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F); } + /** * @param x : X pos * @param y : Y pos @@ -221,7 +218,6 @@ public class RoundedUtils { * @param lineWidth : width of outline line; * @param color : color; */ - public static void drawRoundedOutline(float x, float y, float x1, float y1, float radius,float lineWidth, int color) { glPushAttrib(0); glScaled(0.5D, 0.5D, 0.5D); diff --git a/workspace/logs/latest.log b/workspace/logs/latest.log index 1d3e4178..da93269e 100644 --- a/workspace/logs/latest.log +++ b/workspace/logs/latest.log @@ -1,3768 +1,120 @@ -[12:44:38] [Client thread/INFO]: Setting user: Player880 -[12:44:38] [Client thread/INFO]: (Session ID is token:0:Player880) -[12:44:39] [Client thread/INFO]: [OptiFine] *** Reflector Forge *** -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.Attributes -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: mods.betterfoliage.client.BetterFoliageClient -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.asm.transformers.BlamingTransformer -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.world.ChunkWatchEvent$UnWatch -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.relauncher.CoreModManager -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.DimensionManager -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.GuiScreenEvent$DrawScreenEvent$Pre -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.GuiScreenEvent$DrawScreenEvent$Post -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.EntityViewRenderEvent$CameraSetup -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.EntityViewRenderEvent$FogColors -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.eventhandler.Event -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.eventhandler.EventBus -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.eventhandler.Event$Result -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.property.ExtendedBlockState -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.FMLClientHandler -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.FMLCommonHandler -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.biome.BiomeGenBase.getWaterColorMultiplier -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.addDestroyEffects -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.addHitEffects -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.canCreatureSpawn -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.canRenderInLayer -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.doesSideBlockRendering -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.getBedDirection -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.getExtendedState -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.hasTileEntity -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isAir -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isBed -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isBedFoot -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isSideSolid -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.entity.Entity.canRiderInteract -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Field not present: net.minecraft.entity.Entity.captureDrops -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Field not present: net.minecraft.entity.Entity.capturedDrops -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.entity.Entity.shouldRenderInPass -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.entity.Entity.shouldRiderSit -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.ForgeEventFactory -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.ForgeHooks -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.ForgeHooksClient -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.getDurabilityForDisplay -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.getModel -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.onEntitySwing -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.shouldCauseReequipAnimation -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.showDurabilityBar -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.ItemRecord.getRecordResource -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.ForgeModContainer -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.potion.PotionEffect.isCurativeItem -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.canRenderBreaking -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.getRenderBoundingBox -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.hasFastRenderer -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.shouldRenderInPass -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.preDrawBatch -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.drawBatch -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.vertex.VertexFormatElement$EnumUsage.preDraw -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.vertex.VertexFormatElement$EnumUsage.postDraw -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.World.countEntities -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.World.getPerWorldStorage -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.WorldProvider.getCloudRenderer -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.WorldProvider.getSkyRenderer -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.WorldProvider.getWeatherRenderer -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.GuiModList -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.IColoredBakedQuad -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.property.IExtendedBlockState -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.IRenderHandler -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.ISmartBlockModel -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.ItemModelMesherForge -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraft.launchwrapper.Launch -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.pipeline.LightUtil -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.MinecraftForge -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.MinecraftForgeClient -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.ModelLoader -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderBlockOverlayEvent$OverlayType -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.registry.RenderingRegistry -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderItemInFrameEvent -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Pre -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Post -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Specials$Pre -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Specials$Post -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.SplashProgress -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.world.WorldEvent$Load -[12:44:39] [Client thread/INFO]: [OptiFine] *** Reflector Vanilla *** -[12:44:39] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: optifine.OptiFineClassTransformer -[12:44:39] [Client thread/WARN]: [Athena] Tried accessing non-existing module: theme -[12:44:39] [Client thread/WARN]: [Athena] Tried accessing non-existing module: cape -[12:44:39] [Client thread/INFO]: [Athena] Successfully loaded Athena! -[12:44:39] [Client thread/INFO]: [Athena] -------------------------------- -[12:44:39] [Client thread/INFO]: [Athena] OS: Windows 10 -[12:44:39] [Client thread/INFO]: [Athena] Java: 1.8.0_202, Oracle Corporation -[12:44:39] [Client thread/INFO]: [Athena] Java VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation -[12:44:39] [Client thread/INFO]: [Athena] -------------------------------- -[12:44:39] [Client thread/INFO]: [Athena] Module Repository Size: 37 -[12:44:39] [Client thread/INFO]: [Athena] HUD Elements Size: 17 -[12:44:39] [Client thread/INFO]: [Athena] Account Size: 4 -[12:44:39] [Client thread/INFO]: [Athena] Config Size: 2 -[12:44:39] [Client thread/INFO]: [Athena] Macro Size: 1 -[12:44:39] [Client thread/INFO]: [Athena] Cape Size: 6 -[12:44:39] [Client thread/INFO]: [Athena] -------------------------------- -[12:44:39] [Client thread/INFO]: [Athena] Active Primary Theme: Dark -[12:44:39] [Client thread/INFO]: [Athena] Active Accent Theme: Moonlight -[12:44:39] [Client thread/INFO]: [Athena] Active Config: default -[12:44:39] [Client thread/INFO]: [Athena] -------------------------------- -[12:44:39] [Client thread/INFO]: LWJGL Version: 2.9.4 -[12:44:39] [Client thread/INFO]: [OptiFine] -[12:44:39] [Client thread/INFO]: [OptiFine] OptiFine_1.8.8_HD_U_H8 -[12:44:39] [Client thread/INFO]: [OptiFine] Build: null -[12:44:39] [Client thread/INFO]: [OptiFine] OS: Windows 10 (amd64) version 10.0 -[12:44:39] [Client thread/INFO]: [OptiFine] Java: 1.8.0_202, Oracle Corporation -[12:44:39] [Client thread/INFO]: [OptiFine] VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation -[12:44:39] [Client thread/INFO]: [OptiFine] LWJGL: 2.9.4 -[12:44:39] [Client thread/INFO]: [OptiFine] OpenGL: Intel(R) Iris(R) Xe Graphics, version 4.6.0 - Build 31.0.101.4255, Intel -[12:44:39] [Client thread/INFO]: [OptiFine] OpenGL Version: 4.6.0 -[12:44:39] [Client thread/INFO]: [OptiFine] OpenGL Fancy fog: Not available (GL_NV_fog_distance) -[12:44:39] [Client thread/INFO]: [OptiFine] Maximum texture size: 16384x16384 -[12:44:39] [Thread-7/INFO]: [OptiFine] Checking for new version -[12:44:39] [Thread-7/INFO]: [OptiFine] java.net.UnknownHostException: optifine.net -[12:44:39] [Client thread/INFO]: [Shaders] ShadersMod version: 2.4.12 -[12:44:39] [Client thread/INFO]: [Shaders] OpenGL Version: 4.6.0 - Build 31.0.101.4255 -[12:44:39] [Client thread/INFO]: [Shaders] Vendor: Intel -[12:44:39] [Client thread/INFO]: [Shaders] Renderer: Intel(R) Iris(R) Xe Graphics -[12:44:39] [Client thread/INFO]: [Shaders] Capabilities: 2.0 2.1 3.0 3.2 4.0 -[12:44:39] [Client thread/INFO]: [Shaders] GL_MAX_DRAW_BUFFERS: 8 -[12:44:39] [Client thread/INFO]: [Shaders] GL_MAX_COLOR_ATTACHMENTS_EXT: 8 -[12:44:39] [Client thread/INFO]: [Shaders] GL_MAX_TEXTURE_IMAGE_UNITS: 32 -[12:44:39] [Client thread/INFO]: [Shaders] Load ShadersMod configuration. -[12:44:39] [Client thread/INFO]: [Shaders] Shaders can not be loaded, Fast Render is enabled. -[12:44:39] [Client thread/INFO]: [Shaders] No shaderpack loaded. -[12:44:39] [Client thread/INFO]: Reloading ResourceManager: Default, ! §bPotfast 5kay.zip -[12:44:39] [Client thread/INFO]: [OptiFine] *** Reloading textures *** -[12:44:39] [Client thread/INFO]: [OptiFine] Resource packs: ! §bPotfast 5kay.zip -[12:44:40] [Sound Library Loader/INFO]: Starting up SoundSystem... -[12:44:40] [Thread-8/INFO]: Initializing LWJGL OpenAL -[12:44:40] [Thread-8/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) -[12:44:40] [Client thread/INFO]: [OptiFine] Multitexture: false -[12:44:41] [Thread-8/INFO]: OpenAL initialized. -[12:44:41] [Sound Library Loader/INFO]: Sound engine started -[12:44:41] [Client thread/INFO]: Created: 2048x2048 textures-atlas -[12:44:41] [Client thread/INFO]: [OptiFine] *** Reloading custom textures *** -[12:44:41] [Client thread/INFO]: [OptiFine] Enable face culling: acacia_leaves, birch_leaves, dark_oak_leaves, jungle_leaves, oak_leaves, spruce_leaves -[12:44:45] [Server thread/INFO]: Starting integrated minecraft server version 1.8.8 -[12:44:45] [Server thread/INFO]: Generating keypair -[12:44:45] [Server thread/INFO]: Preparing start region for level 0 -[12:44:45] [Server thread/INFO]: Changing view distance to 8, from 10 -[12:44:46] [Server thread/INFO]: etert[local:E:777719cb] logged in with entity id 115 at (765.8404759321336, 63.0, 790.0225502900876) -[12:44:46] [Server thread/INFO]: etert joined the game -[12:44:46] [Texture Downloader #1/ERROR]: Couldn't download http texture: java.net.UnknownHostException: s.optifine.net -[12:44:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [CHAT] Taking a screenshot... please wait a few! -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [ForkJoinPool.commonPool-worker-25/INFO]: [CHAT] Couldn't save screenshot: api.imgur.com -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:44:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [CHAT] Taking a screenshot... please wait a few! -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [ForkJoinPool.commonPool-worker-25/INFO]: [CHAT] Couldn't save screenshot: api.imgur.com -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [CHAT] Taking a screenshot... please wait a few! -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:07] [ForkJoinPool.commonPool-worker-25/INFO]: [CHAT] Couldn't save screenshot: api.imgur.com -[12:45:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:45:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:50] [Client thread/INFO]: [CHAT] Taking a screenshot... please wait a few! -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [ForkJoinPool.commonPool-worker-18/INFO]: [CHAT] Couldn't save screenshot: api.imgur.com -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:52] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:53] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [CHAT] Saved screenshot as 2023-07-03_12.46.54.png -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:54] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:55] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [CHAT] Saved screenshot as 2023-07-03_12.46.55.png -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:56] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:57] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:58] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:46:59] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [CHAT] Taking a screenshot... please wait a few! -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:00] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [ForkJoinPool.commonPool-worker-18/INFO]: [CHAT] Couldn't save screenshot: api.imgur.com -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:01] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:02] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:03] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:04] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:05] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:06] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:07] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:08] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:09] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:10] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:11] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:12] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:13] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:14] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:15] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:16] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:17] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:18] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:19] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:20] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:21] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:22] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:23] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:24] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:25] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:26] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:27] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:28] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:29] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:30] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:31] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:32] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:33] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:34] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:35] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:36] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:37] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:38] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:39] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:40] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:41] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:42] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:43] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:44] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:45] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:46] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:47] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:48] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:49] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:50] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. -[12:47:51] [Client thread/INFO]: [Athena] EventBus - Failed supplying subscribed event rip.athena.client.events.client.ClientTickEvent to rip.athena.client.Athena.onClientTick. +[17:10:32] [Client thread/INFO]: Setting user: Player329 +[17:10:32] [Client thread/INFO]: (Session ID is token:0:Player329) +[17:10:32] [Client thread/INFO]: [OptiFine] *** Reflector Forge *** +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.Attributes +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: mods.betterfoliage.client.BetterFoliageClient +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.asm.transformers.BlamingTransformer +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.world.ChunkWatchEvent$UnWatch +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.relauncher.CoreModManager +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.DimensionManager +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.GuiScreenEvent$DrawScreenEvent$Pre +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.GuiScreenEvent$DrawScreenEvent$Post +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.EntityViewRenderEvent$CameraSetup +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.EntityViewRenderEvent$FogColors +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.eventhandler.Event +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.eventhandler.EventBus +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.eventhandler.Event$Result +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.property.ExtendedBlockState +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.FMLClientHandler +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.FMLCommonHandler +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.biome.BiomeGenBase.getWaterColorMultiplier +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.addDestroyEffects +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.addHitEffects +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.canCreatureSpawn +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.canRenderInLayer +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.doesSideBlockRendering +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.getBedDirection +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.getExtendedState +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.hasTileEntity +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isAir +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isBed +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isBedFoot +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isSideSolid +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.entity.Entity.canRiderInteract +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Field not present: net.minecraft.entity.Entity.captureDrops +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Field not present: net.minecraft.entity.Entity.capturedDrops +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.entity.Entity.shouldRenderInPass +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.entity.Entity.shouldRiderSit +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.ForgeEventFactory +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.ForgeHooks +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.ForgeHooksClient +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.getDurabilityForDisplay +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.getModel +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.onEntitySwing +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.shouldCauseReequipAnimation +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.showDurabilityBar +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.ItemRecord.getRecordResource +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.ForgeModContainer +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.potion.PotionEffect.isCurativeItem +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.canRenderBreaking +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.getRenderBoundingBox +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.hasFastRenderer +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.shouldRenderInPass +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.preDrawBatch +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.drawBatch +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.vertex.VertexFormatElement$EnumUsage.preDraw +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.vertex.VertexFormatElement$EnumUsage.postDraw +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.World.countEntities +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.World.getPerWorldStorage +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.WorldProvider.getCloudRenderer +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.WorldProvider.getSkyRenderer +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.WorldProvider.getWeatherRenderer +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.GuiModList +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.IColoredBakedQuad +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.property.IExtendedBlockState +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.IRenderHandler +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.ISmartBlockModel +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.ItemModelMesherForge +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraft.launchwrapper.Launch +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.pipeline.LightUtil +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.MinecraftForge +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.MinecraftForgeClient +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.ModelLoader +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderBlockOverlayEvent$OverlayType +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.registry.RenderingRegistry +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderItemInFrameEvent +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Pre +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Post +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Specials$Pre +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Specials$Post +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.SplashProgress +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.world.WorldEvent$Load +[17:10:32] [Client thread/INFO]: [OptiFine] *** Reflector Vanilla *** +[17:10:32] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: optifine.OptiFineClassTransformer +[17:10:33] [Client thread/WARN]: [Athena] Tried accessing non-existing module: theme +[17:10:33] [Client thread/WARN]: [Athena] Tried accessing non-existing module: cape +[17:10:33] [Client thread/INFO]: LWJGL Version: 2.9.4 +[17:10:33] [Client thread/INFO]: [OptiFine] +[17:10:33] [Client thread/INFO]: [OptiFine] OptiFine_1.8.8_HD_U_H8 +[17:10:33] [Client thread/INFO]: [OptiFine] Build: null +[17:10:33] [Client thread/INFO]: [OptiFine] OS: Windows 10 (amd64) version 10.0 +[17:10:33] [Client thread/INFO]: [OptiFine] Java: 1.8.0_202, Oracle Corporation +[17:10:33] [Client thread/INFO]: [OptiFine] VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation +[17:10:33] [Client thread/INFO]: [OptiFine] LWJGL: 2.9.4 +[17:10:33] [Client thread/INFO]: [OptiFine] OpenGL: Intel(R) Iris(R) Xe Graphics, version 4.6.0 - Build 31.0.101.4255, Intel +[17:10:33] [Client thread/INFO]: [OptiFine] OpenGL Version: 4.6.0 +[17:10:33] [Client thread/INFO]: [OptiFine] OpenGL Fancy fog: Not available (GL_NV_fog_distance) +[17:10:33] [Client thread/INFO]: [OptiFine] Maximum texture size: 16384x16384 +[17:10:33] [Client thread/INFO]: [Shaders] ShadersMod version: 2.4.12 +[17:10:33] [Client thread/INFO]: [Shaders] OpenGL Version: 4.6.0 - Build 31.0.101.4255 +[17:10:33] [Client thread/INFO]: [Shaders] Vendor: Intel +[17:10:33] [Client thread/INFO]: [Shaders] Renderer: Intel(R) Iris(R) Xe Graphics +[17:10:33] [Client thread/INFO]: [Shaders] Capabilities: 2.0 2.1 3.0 3.2 4.0 +[17:10:33] [Client thread/INFO]: [Shaders] GL_MAX_DRAW_BUFFERS: 8 +[17:10:33] [Client thread/INFO]: [Shaders] GL_MAX_COLOR_ATTACHMENTS_EXT: 8 +[17:10:33] [Client thread/INFO]: [Shaders] GL_MAX_TEXTURE_IMAGE_UNITS: 32 +[17:10:33] [Client thread/INFO]: [Shaders] Load ShadersMod configuration. +[17:10:33] [Client thread/INFO]: [Shaders] Shaders can not be loaded, Fast Render is enabled. +[17:10:33] [Client thread/INFO]: [Shaders] No shaderpack loaded. +[17:10:33] [Client thread/INFO]: Reloading ResourceManager: Default, ! §bPotfast 5kay.zip +[17:10:33] [Client thread/INFO]: [OptiFine] *** Reloading textures *** +[17:10:33] [Client thread/INFO]: [OptiFine] Resource packs: ! §bPotfast 5kay.zip +[17:10:33] [Sound Library Loader/INFO]: Starting up SoundSystem... +[17:10:34] [Thread-7/INFO]: Initializing LWJGL OpenAL +[17:10:34] [Thread-7/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) +[17:10:35] [Client thread/INFO]: [OptiFine] Multitexture: false +[17:10:35] [Thread-7/INFO]: OpenAL initialized. +[17:10:35] [Sound Library Loader/INFO]: Sound engine started +[17:10:35] [Client thread/INFO]: Created: 2048x2048 textures-atlas +[17:10:35] [Client thread/INFO]: [OptiFine] *** Reloading custom textures *** +[17:10:35] [Client thread/INFO]: [OptiFine] Enable face culling: acacia_leaves, birch_leaves, dark_oak_leaves, jungle_leaves, oak_leaves, spruce_leaves diff --git a/workspace/options.txt b/workspace/options.txt index be2356c6..bd4c5358 100644 --- a/workspace/options.txt +++ b/workspace/options.txt @@ -1,6 +1,6 @@ invertYMouse:false mouseSensitivity:0.2535211 -fov:0.425 +fov:0.5 gamma:0.0 saturation:0.0 renderDistance:8 diff --git a/workspace/saves/MCP Development World/data/villages.dat b/workspace/saves/MCP Development World/data/villages.dat index 85ac974b..233318ce 100644 Binary files a/workspace/saves/MCP Development World/data/villages.dat and b/workspace/saves/MCP Development World/data/villages.dat differ diff --git a/workspace/saves/MCP Development World/data/villages_end.dat b/workspace/saves/MCP Development World/data/villages_end.dat index 85ac974b..233318ce 100644 Binary files a/workspace/saves/MCP Development World/data/villages_end.dat and b/workspace/saves/MCP Development World/data/villages_end.dat differ diff --git a/workspace/saves/MCP Development World/data/villages_nether.dat b/workspace/saves/MCP Development World/data/villages_nether.dat index 85ac974b..233318ce 100644 Binary files a/workspace/saves/MCP Development World/data/villages_nether.dat and b/workspace/saves/MCP Development World/data/villages_nether.dat differ diff --git a/workspace/saves/MCP Development World/level.dat b/workspace/saves/MCP Development World/level.dat index 4e235436..347b63d5 100644 Binary files a/workspace/saves/MCP Development World/level.dat and b/workspace/saves/MCP Development World/level.dat differ diff --git a/workspace/saves/MCP Development World/level.dat_old b/workspace/saves/MCP Development World/level.dat_old index d6dacb1d..7a76f433 100644 Binary files a/workspace/saves/MCP Development World/level.dat_old and b/workspace/saves/MCP Development World/level.dat_old differ diff --git a/workspace/saves/MCP Development World/region/r.0.-1.mca b/workspace/saves/MCP Development World/region/r.0.-1.mca index c76b7868..facc8303 100644 Binary files a/workspace/saves/MCP Development World/region/r.0.-1.mca and b/workspace/saves/MCP Development World/region/r.0.-1.mca differ diff --git a/workspace/saves/MCP Development World/region/r.0.0.mca b/workspace/saves/MCP Development World/region/r.0.0.mca index 73c8e11a..0eab4e88 100644 Binary files a/workspace/saves/MCP Development World/region/r.0.0.mca and b/workspace/saves/MCP Development World/region/r.0.0.mca differ diff --git a/workspace/saves/MCP Development World/region/r.1.-1.mca b/workspace/saves/MCP Development World/region/r.1.-1.mca index f49ca3cb..9b1544e9 100644 Binary files a/workspace/saves/MCP Development World/region/r.1.-1.mca and b/workspace/saves/MCP Development World/region/r.1.-1.mca differ diff --git a/workspace/saves/MCP Development World/region/r.1.0.mca b/workspace/saves/MCP Development World/region/r.1.0.mca index 07b4775d..3a7cded6 100644 Binary files a/workspace/saves/MCP Development World/region/r.1.0.mca and b/workspace/saves/MCP Development World/region/r.1.0.mca differ diff --git a/workspace/saves/MCP Development World/region/r.1.1.mca b/workspace/saves/MCP Development World/region/r.1.1.mca index c90f5535..99045f13 100644 Binary files a/workspace/saves/MCP Development World/region/r.1.1.mca and b/workspace/saves/MCP Development World/region/r.1.1.mca differ diff --git a/workspace/saves/MCP Development World/region/r.2.0.mca b/workspace/saves/MCP Development World/region/r.2.0.mca index b4fe0eda..8fe18c83 100644 Binary files a/workspace/saves/MCP Development World/region/r.2.0.mca and b/workspace/saves/MCP Development World/region/r.2.0.mca differ diff --git a/workspace/saves/MCP Development World/region/r.2.1.mca b/workspace/saves/MCP Development World/region/r.2.1.mca index c7d55a5b..b5b76d50 100644 Binary files a/workspace/saves/MCP Development World/region/r.2.1.mca and b/workspace/saves/MCP Development World/region/r.2.1.mca differ diff --git a/workspace/saves/MCP Development World/session.lock b/workspace/saves/MCP Development World/session.lock index 48cc1aa9..9521a94e 100644 Binary files a/workspace/saves/MCP Development World/session.lock and b/workspace/saves/MCP Development World/session.lock differ diff --git a/workspace/settings/configs/default.json b/workspace/settings/configs/default.json index 3b033ee8..096b4233 100644 --- a/workspace/settings/configs/default.json +++ b/workspace/settings/configs/default.json @@ -11,7 +11,7 @@ "Better skin loading": true, "Culling fix": true, "Chunk update limiter": false, - "Chunk updates per second": 112, + "Chunk updates per second": 155, "Better Chests": false, "Static particle color": true, "Static drops": true, @@ -27,6 +27,30 @@ "bindtype": "Toggle", "enabled": false }, + "Crosshair": { + "settings": { + "Draw color": { + "red": 255, + "green": 0, + "blue": 0, + "alpha": 255 + }, + "Brush size": 2, + "Rainbow color": false, + "Delete mode": false + }, + "bind": 0, + "hud": {}, + "bindtype": "Toggle", + "enabled": false + }, + "Fullbright": { + "settings": {}, + "bind": 0, + "hud": {}, + "bindtype": "Toggle", + "enabled": false + }, "CPS": { "settings": { "Transparency": 255, @@ -69,36 +93,12 @@ "bindtype": "Toggle", "enabled": false }, - "Fullbright": { - "settings": {}, - "bind": 0, - "hud": {}, - "bindtype": "Toggle", - "enabled": false - }, - "Crosshair": { - "settings": { - "Draw color": { - "red": 255, - "green": 0, - "blue": 0, - "alpha": 255 - }, - "Brush size": 2, - "Rainbow color": false, - "Delete mode": false - }, - "bind": 0, - "hud": {}, - "bindtype": "Toggle", - "enabled": false - }, "FPS": { "settings": { "Transparency": 255, "Static Chroma": false, "Background": true, - "Custom Font": false, + "Custom Font": true, "Wave Chroma": false, "Background Color": { "red": 0, @@ -112,13 +112,13 @@ "blue": 255, "alpha": 255 }, - "Display Mode": "Old" + "Display Mode": "Circle" }, "bind": 0, "hud": {"fps": { "visible": true, - "x": 1, - "y": 175, + "x": 451, + "y": 28, "scale": 1 }}, "bindtype": "Toggle", @@ -147,6 +147,50 @@ "bindtype": "Toggle", "enabled": false }, + "Potion Effects": { + "settings": {"Background": true}, + "bind": 0, + "hud": {"potioneffects": { + "visible": true, + "x": 8, + "y": 202, + "scale": 1 + }}, + "bindtype": "Toggle", + "enabled": true + }, + "Clock": { + "settings": { + "Transparency": 255, + "Static Chroma": false, + "Background": true, + "Custom Font": false, + "Wave Chroma": false, + "Color": { + "red": 255, + "green": 255, + "blue": 255, + "alpha": 255 + }, + "Background Color": { + "red": 0, + "green": 0, + "blue": 0, + "alpha": 153 + }, + "Display Mode": "Circle", + "Clock Format": "yyyy/MM/dd HH:mm:ss" + }, + "bind": 0, + "hud": {"time": { + "visible": true, + "x": 1, + "y": 190, + "scale": 1 + }}, + "bindtype": "Toggle", + "enabled": false + }, "Custom Text": { "settings": { "Transparency": 255, @@ -179,41 +223,9 @@ "bindtype": "Toggle", "enabled": false }, - "Clock": { - "settings": { - "Transparency": 255, - "Static Chroma": false, - "Background": true, - "Custom Font": false, - "Wave Chroma": false, - "Color": { - "red": 255, - "green": 255, - "blue": 255, - "alpha": 255 - }, - "Background Color": { - "red": 0, - "green": 0, - "blue": 0, - "alpha": 150 - }, - "Display Mode": "Circle", - "Clock Format": "yyyy/MM/dd HH:mm:ss" - }, - "bind": 0, - "hud": {"time": { - "visible": true, - "x": 1, - "y": 190, - "scale": 1 - }}, - "bindtype": "Toggle", - "enabled": false - }, "Aim Trainer": { "settings": { - "Speed": 1.6, + "Speed": 1.8, "Static Chroma": false, "Background": true, "Custom Font": false, @@ -452,7 +464,7 @@ "bindtype": "Toggle", "enabled": false }, - "theme": "MOONLIGHT", + "theme": "ATHENA", "Freelook": { "settings": { "Perspective Key": 56, @@ -476,18 +488,6 @@ "key": 19, "enabled": true }], - "Screenshot Uploader": { - "settings": { - "Delete": true, - "Copy": true, - "Link": true, - "Open": true - }, - "bind": 0, - "hud": {}, - "bindtype": "Toggle", - "enabled": true - }, "Coordinates": { "settings": { "Show Compass": true, @@ -541,7 +541,19 @@ "scale": 1 }}, "bindtype": "Toggle", - "enabled": true + "enabled": false + }, + "Screenshot Uploader": { + "settings": { + "Delete": true, + "Copy": true, + "Link": true, + "Open": true + }, + "bind": 0, + "hud": {}, + "bindtype": "Toggle", + "enabled": false }, "fps": { "entities": [], @@ -692,6 +704,44 @@ "bindtype": "Toggle", "enabled": false }, + "Reach Display": { + "settings": { + "Transparency": 255, + "Static Chroma": false, + "Background": true, + "Custom Font": false, + "Wave Chroma": false, + "Background Color": { + "red": 0, + "green": 0, + "blue": 0, + "alpha": 153 + }, + "Color": { + "red": 255, + "green": 255, + "blue": 255, + "alpha": 255 + }, + "Display Mode": "Circle" + }, + "bind": 0, + "hud": {"reachdisplay": { + "visible": true, + "x": 1, + "y": 175, + "scale": 1 + }}, + "bindtype": "Toggle", + "enabled": false + }, + "Mouse Delay Fix": { + "settings": {}, + "bind": 0, + "hud": {}, + "bindtype": "Toggle", + "enabled": false + }, "Test Module": { "settings": { "Color 2": { @@ -742,46 +792,8 @@ "bindtype": "Toggle", "enabled": false }, - "Mouse Delay Fix": { - "settings": {}, - "bind": 0, - "hud": {}, - "bindtype": "Toggle", - "enabled": false - }, - "Reach Display": { - "settings": { - "Transparency": 255, - "Static Chroma": false, - "Background": true, - "Custom Font": false, - "Wave Chroma": false, - "Background Color": { - "red": 0, - "green": 0, - "blue": 0, - "alpha": 150 - }, - "Color": { - "red": 255, - "green": 255, - "blue": 255, - "alpha": 255 - }, - "Display Mode": "Circle" - }, - "bind": 0, - "hud": {"reachdisplay": { - "visible": true, - "x": 1, - "y": 175, - "scale": 1 - }}, - "bindtype": "Toggle", - "enabled": false - }, "Motion Blur": { - "settings": {"Amount": 1}, + "settings": {"Amount": 3}, "bind": 0, "hud": {}, "bindtype": "Toggle", diff --git a/workspace/usercache.json b/workspace/usercache.json index 82439ac8..2e6d758d 100644 --- a/workspace/usercache.json +++ b/workspace/usercache.json @@ -1 +1 @@ -[{"name":"etert","uuid":"a12f6b57-b314-305d-a4de-14e5b61e7068","expiresOn":"2023-08-03 12:44:46 +0200"},{"name":"Player119","uuid":"8fbcb74c-bd8d-3181-a022-3c858a10477d","expiresOn":"2023-08-02 10:47:11 +0200"},{"name":"ziue","uuid":"ae330cf9-3749-3ca0-ba31-8447e2a2786f","expiresOn":"2023-08-01 16:58:31 +0200"},{"name":"Player995","uuid":"93bfa0b6-cc14-3c0c-8efa-0bcc48245274","expiresOn":"2023-08-02 16:21:08 +0200"},{"name":"Player504","uuid":"eb08048d-a3b9-3008-984c-fcc8bb7d8893","expiresOn":"2023-08-02 10:04:23 +0200"},{"name":"Player665","uuid":"5daba5f8-966b-3165-8089-02aaa9b1e740","expiresOn":"2023-08-02 11:22:29 +0200"},{"name":"Player831","uuid":"7daaf105-640b-34bc-83e6-6c045d1c9591","expiresOn":"2023-08-02 17:44:01 +0200"},{"name":"ziue","uuid":"74e89738-6c9e-4f59-83ef-d365849e6049","expiresOn":"2023-08-01 19:27:12 +0200"},{"name":"Player311","uuid":"d4625839-68ff-34de-8208-19f0e474753e","expiresOn":"2023-08-02 16:20:03 +0200"}] \ No newline at end of file +[{"name":"etert","uuid":"a12f6b57-b314-305d-a4de-14e5b61e7068","expiresOn":"2023-08-04 14:43:35 +0200"},{"name":"Player831","uuid":"7daaf105-640b-34bc-83e6-6c045d1c9591","expiresOn":"2023-08-02 17:44:01 +0200"},{"name":"ziue","uuid":"ae330cf9-3749-3ca0-ba31-8447e2a2786f","expiresOn":"2023-08-01 16:58:31 +0200"},{"name":"Player995","uuid":"93bfa0b6-cc14-3c0c-8efa-0bcc48245274","expiresOn":"2023-08-02 16:21:08 +0200"},{"name":"ziue","uuid":"74e89738-6c9e-4f59-83ef-d365849e6049","expiresOn":"2023-08-01 19:27:12 +0200"},{"name":"Player665","uuid":"5daba5f8-966b-3165-8089-02aaa9b1e740","expiresOn":"2023-08-02 11:22:29 +0200"},{"name":"Player119","uuid":"8fbcb74c-bd8d-3181-a022-3c858a10477d","expiresOn":"2023-08-02 10:47:11 +0200"},{"name":"Player504","uuid":"eb08048d-a3b9-3008-984c-fcc8bb7d8893","expiresOn":"2023-08-02 10:04:23 +0200"},{"name":"Player311","uuid":"d4625839-68ff-34de-8208-19f0e474753e","expiresOn":"2023-08-02 16:20:03 +0200"}] \ No newline at end of file