Derped when I copied the jar loading code. -Bibl

This commit is contained in:
TheBiblMan 2015-06-01 15:25:50 +01:00
parent 4a7332fca5
commit ff7bd343fc

AI 샘플 코드 생성 중입니다

Loading...

View File

@ -63,7 +63,7 @@ public class CompiledJavaPluginLaunchStrategy implements PluginLaunchStrategy {
while ((entry = jis.getNextEntry()) != null) {
try {
String name = entry.getName();
if(!name.endsWith(".class")){
if(name.endsWith(".class")){
byte[] bytes = JarUtils.getBytes(jis);
String magic = String.format("%02X", bytes[0]) + String.format("%02X", bytes[1]) + String.format("%02X", bytes[2]) + String.format("%02X", bytes[3]);
if(magic.toLowerCase().equals("cafebabe")) {