thing
This commit is contained in:
parent
c197bffaf7
commit
dcf23fe6e1
|
|
@ -72,7 +72,7 @@ repositories{
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
minecraft 'net.minecraftforge:forge:1.19.2-43.2.6'
|
minecraft 'net.minecraftforge:forge:1.19.2-43.2.10'
|
||||||
annotationProcessor 'org.spongepowered:mixin:0.8.5:processor'
|
annotationProcessor 'org.spongepowered:mixin:0.8.5:processor'
|
||||||
|
|
||||||
implementation fg.deobf("com.github.Mysticpasta1:mcef-forge:17731a6bbb")
|
implementation fg.deobf("com.github.Mysticpasta1:mcef-forge:17731a6bbb")
|
||||||
|
|
|
||||||
|
|
@ -207,7 +207,7 @@ public class GuiKeyboard extends WDScreen {
|
||||||
|
|
||||||
private boolean hasUserReadWarning() {
|
private boolean hasUserReadWarning() {
|
||||||
try {
|
try {
|
||||||
File f = new File(FMLPaths.GAMEDIR.name(), WARNING_FNAME);
|
File f = new File(FMLPaths.GAMEDIR.get().toString(), WARNING_FNAME);
|
||||||
|
|
||||||
if(f.exists()) {
|
if(f.exists()) {
|
||||||
BufferedReader br = new BufferedReader(new FileReader(f));
|
BufferedReader br = new BufferedReader(new FileReader(f));
|
||||||
|
|
@ -225,7 +225,7 @@ public class GuiKeyboard extends WDScreen {
|
||||||
|
|
||||||
private void writeUserAcknowledge() {
|
private void writeUserAcknowledge() {
|
||||||
try {
|
try {
|
||||||
File f = new File(FMLPaths.GAMEDIR.name(), WARNING_FNAME);
|
File f = new File(FMLPaths.GAMEDIR.get().toString(), WARNING_FNAME);
|
||||||
|
|
||||||
BufferedWriter bw = new BufferedWriter(new FileWriter(f));
|
BufferedWriter bw = new BufferedWriter(new FileWriter(f));
|
||||||
bw.write("read\n");
|
bw.write("read\n");
|
||||||
|
|
|
||||||
|
|
@ -93,9 +93,9 @@
|
||||||
"webdisplays.extcard.cantcraft2": "You WILL FAIL at crafting this item.",
|
"webdisplays.extcard.cantcraft2": "You WILL FAIL at crafting this item.",
|
||||||
"webdisplays.extcard.bad": "Someone failed at crafting an extension card",
|
"webdisplays.extcard.bad": "Someone failed at crafting an extension card",
|
||||||
"webdisplays.gui.keyboard.hooked": "Keyboard hooked. Press escape to leave.",
|
"webdisplays.gui.keyboard.hooked": "Keyboard hooked. Press escape to leave.",
|
||||||
"webdisplays.gui.keyboard.warning1": "WARNING! Typed data are sent in PLAIN T,EXT to the server.",
|
"webdisplays.gui.keyboard.warning1": "WARNING! Typed data are sent in PLAIN TEXT to the server.",
|
||||||
"webdisplays.gui.keyboard.warning2": "This means anyone can know what you're ,up to.",
|
"webdisplays.gui.keyboard.warning2": "This means anyone can know what you're up to.",
|
||||||
"webdisplays.gui.keyboard.warning3": "NEVER write one of your passwords using, this keyboard.",
|
"webdisplays.gui.keyboard.warning3": "NEVER write one of your passwords using this keyboard.",
|
||||||
"webdisplays.gui.keyboard.gotcha": "Got ya",
|
"webdisplays.gui.keyboard.gotcha": "Got ya",
|
||||||
"advancements.webdisplays.root.title": "WebDisplays",
|
"advancements.webdisplays.root.title": "WebDisplays",
|
||||||
"advancements.webdisplays.root.description": "The WebDisplays mod",
|
"advancements.webdisplays.root.description": "The WebDisplays mod",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user