22w14b (FREE) Fixed copy paste crash

This commit is contained in:
LAX1DUDE 2022-04-08 21:02:08 -07:00
parent bec1a03fa2
commit 6946edc396
12 changed files with 56227 additions and 56220 deletions

View File

@ -3,7 +3,7 @@ package net.md_5.bungee.eaglercraft;
public class EaglercraftBungee { public class EaglercraftBungee {
public static final String brand = "Eagtek"; 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 String version = "0.2.0";
public static final boolean cracked = true; public static final boolean cracked = true;

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@ public class ConfigConstants {
public static boolean profanity = false; 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 mainMenuString = "eaglercraft " + version;
public static final String forkMe = "https://github.com/LAX1DUDE/eaglercraft"; public static final String forkMe = "https://github.com/LAX1DUDE/eaglercraft";

View File

@ -20,11 +20,11 @@ public class EntityItemFrame extends EntityHanging {
} }
public int func_82329_d() { public int func_82329_d() {
return hasMapItem ? 17 : 10; return hasMapItem ? 16 : 10;
} }
public int func_82330_g() { public int func_82330_g() {
return hasMapItem ? 17 : 10; return hasMapItem ? 16 : 10;
} }
/** /**

View File

@ -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); 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); public static native void setClipboard(String str);
@JSBody(params = { "obj" }, script = "return typeof obj === \"string\";") @JSBody(params = { "obj" }, script = "return typeof obj === \"string\";")

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long