EngineHub / CommandHelper

Rapid scripting and command aliases for Minecraft owners
https://methodscript.com
Other
119 stars 71 forks source link

stacktrace with entity_type() #595

Closed LadyCailin closed 4 years ago

LadyCailin commented 4 years ago

CMDHELPER-2645 - Reported by Hekta on 2013-04-13 14:00:42 UTC

2013-04-13 15:43:15 [INFO] An unexpected exception occured during the execution of a script. 2013-04-13 15:43:15 [SEVERE] java.lang.Error: While trying to find the correct entity type for org.bukkit.craftbukkit.v1_5_R2.entity.CraftEnderSignal, was unable to find the appropriate implementation. Please alert the developers of this stack trace. 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.abstraction.bukkit.BukkitConvertor.BukkitGetCorrectEntity(BukkitConvertor.java:250) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.abstraction.bukkit.BukkitConvertor.GetCorrectEntity(BukkitConvertor.java:257) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.abstraction.StaticLayer.GetCorrectEntity(StaticLayer.java:134) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.Static.getEntity(Static.java:627) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.functions.EntityManagement$entity_type.exec(EntityManagement.java:332) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.Script.eval(Script.java:301) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.Script.eval(Script.java:262) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.Script.seval(Script.java:197) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.functions.BasicLogic$ifelse.execs(BasicLogic.java:373) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.Script.eval(Script.java:254) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.functions.DataHandling$foreach.execs(DataHandling.java:549) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.Script.eval(Script.java:254) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.functions.BasicLogic$ifelse.execs(BasicLogic.java:378) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.Script.eval(Script.java:254) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.Script.eval(Script.java:262) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.MethodScriptCompiler.execute(MethodScriptCompiler.java:1489) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.MethodScriptCompiler.execute(MethodScriptCompiler.java:1454) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.Script.run(Script.java:151) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.core.AliasCore.alias(AliasCore.java:137) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.commandhelper.CommandHelperListener.runAlias(CommandHelperListener.java:87) 2013-04-13 15:43:15 [SEVERE] at com.laytonsmith.commandhelper.CommandHelperListener.onPlayerCommandPreprocess(CommandHelperListener.java:132) 2013-04-13 15:43:15 [SEVERE] at sun.reflect.GeneratedMethodAccessor44.invoke(Unknown Source) 2013-04-13 15:43:15 [SEVERE] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 2013-04-13 15:43:15 [SEVERE] at java.lang.reflect.Method.invoke(Method.java:601) 2013-04-13 15:43:15 [SEVERE] at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:425) 2013-04-13 15:43:15 [SEVERE] at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62) 2013-04-13 15:43:15 [SEVERE] at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:477) 2013-04-13 15:43:15 [SEVERE] at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:462) 2013-04-13 15:43:15 [SEVERE] at net.minecraft.server.v1_5_R2.PlayerConnection.handleCommand(PlayerConnection.java:958) 2013-04-13 15:43:15 [SEVERE] at net.minecraft.server.v1_5_R2.PlayerConnection.chat(PlayerConnection.java:884) 2013-04-13 15:43:15 [SEVERE] at net.minecraft.server.v1_5_R2.PlayerConnection.a(PlayerConnection.java:841) 2013-04-13 15:43:15 [SEVERE] at net.minecraft.server.v1_5_R2.Packet3Chat.handle(Packet3Chat.java:44) 2013-04-13 15:43:15 [SEVERE] at net.minecraft.server.v1_5_R2.NetworkManager.b(NetworkManager.java:292) 2013-04-13 15:43:15 [SEVERE] at net.minecraft.server.v1_5_R2.PlayerConnection.d(PlayerConnection.java:110) 2013-04-13 15:43:15 [SEVERE] at net.minecraft.server.v1_5_R2.ServerConnection.b(SourceFile:35) 2013-04-13 15:43:15 [SEVERE] at net.minecraft.server.v1_5_R2.DedicatedServerConnection.b(SourceFile:30) 2013-04-13 15:43:15 [SEVERE] at net.minecraft.server.v1_5_R2.MinecraftServer.r(MinecraftServer.java:578) 2013-04-13 15:43:15 [SEVERE] at net.minecraft.server.v1_5_R2.DedicatedServer.r(DedicatedServer.java:225) 2013-04-13 15:43:15 [SEVERE] at net.minecraft.server.v1_5_R2.MinecraftServer.q(MinecraftServer.java:474) 2013-04-13 15:43:15 [SEVERE] at net.minecraft.server.v1_5_R2.MinecraftServer.run(MinecraftServer.java:407) 2013-04-13 15:43:15 [SEVERE] at net.minecraft.server.v1_5_R2.ThreadServerApplication.run(SourceFile:573)

LadyCailin commented 4 years ago

Comment by jb_aero on 2013-05-12 14:52:37 UTC

This has been fixed for awhile