22w14b (FREE) Fixed copy paste crash
This commit is contained in:
parent
bec1a03fa2
commit
6946edc396
|
@ -3,7 +3,7 @@ package net.md_5.bungee.eaglercraft;
|
|||
public class EaglercraftBungee {
|
||||
|
||||
public static final String brand = "Eagtek";
|
||||
public static final String name = "Eaglercraftbungee";
|
||||
public static final String name = "EaglercraftBungee";
|
||||
public static final String version = "0.2.0";
|
||||
public static final boolean cracked = true;
|
||||
|
||||
|
|
92969
javascript/classes.js
92969
javascript/classes.js
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@ public class ConfigConstants {
|
|||
|
||||
public static boolean profanity = false;
|
||||
|
||||
public static final String version = "22w14a";
|
||||
public static final String version = "22w14b";
|
||||
public static final String mainMenuString = "eaglercraft " + version;
|
||||
|
||||
public static final String forkMe = "https://github.com/LAX1DUDE/eaglercraft";
|
||||
|
|
|
@ -20,11 +20,11 @@ public class EntityItemFrame extends EntityHanging {
|
|||
}
|
||||
|
||||
public int func_82329_d() {
|
||||
return hasMapItem ? 17 : 10;
|
||||
return hasMapItem ? 16 : 10;
|
||||
}
|
||||
|
||||
public int func_82330_g() {
|
||||
return hasMapItem ? 17 : 10;
|
||||
return hasMapItem ? 16 : 10;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -1736,10 +1736,10 @@ public class EaglerAdapterImpl2 {
|
|||
});
|
||||
}
|
||||
|
||||
@JSBody(params = { "cb" }, script = "window.navigator.clipboard.readText().then(function(s) { cb(s); }, function(s) { cb(null); });")
|
||||
@JSBody(params = { "cb" }, script = "if(!window.navigator.clipboard) cb(null); else window.navigator.clipboard.readText().then(function(s) { cb(s); }, function(s) { cb(null); });")
|
||||
private static native void getClipboard0(StupidFunctionResolveString cb);
|
||||
|
||||
@JSBody(params = { "str" }, script = "window.navigator.clipboard.writeText(str);")
|
||||
@JSBody(params = { "str" }, script = "if(window.navigator.clipboard) window.navigator.clipboard.writeText(str);")
|
||||
public static native void setClipboard(String str);
|
||||
|
||||
@JSBody(params = { "obj" }, script = "return typeof obj === \"string\";")
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user