mirror of
https://github.com/Theta-Dev/ConstructionWand.git
synced 2024-11-22 22:27:49 +01:00
Compare commits
No commits in common. "210baba4cd5e5ec6bae881e994c5332c40b8014f" and "f86a429beb693bc54a623166167abacdef9e1dff" have entirely different histories.
210baba4cd
...
f86a429beb
4 changed files with 9 additions and 14 deletions
|
@ -1,6 +1,6 @@
|
||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
maven { url = 'https://maven.minecraftforge.net' }
|
maven { url = 'https://files.minecraftforge.net/maven' }
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
|
@ -4,15 +4,15 @@ org.gradle.daemon=false
|
||||||
author=thetadev
|
author=thetadev
|
||||||
modid=constructionwand
|
modid=constructionwand
|
||||||
|
|
||||||
mcversion=1.18.1
|
mcversion=1.18
|
||||||
forgeversion=39.0.0
|
forgeversion=38.0.16
|
||||||
mcp_channel=official
|
mcp_channel=official
|
||||||
mcp_mappings=1.18.1
|
mcp_mappings=1.18
|
||||||
|
|
||||||
# Source: https://maven.blamejared.com/vazkii/botania/Botania/
|
# Source: https://maven.blamejared.com/vazkii/botania/Botania/
|
||||||
# botania=1.16.2-405
|
# botania=1.16.2-405
|
||||||
# Source: https://dvs1.progwml6.com/files/maven/mezz/jei/
|
# Source: https://dvs1.progwml6.com/files/maven/mezz/jei/
|
||||||
jei_version=jei-1.18.1:9.1.0.41
|
jei_version=jei-1.18:9.0.0.40
|
||||||
|
|
||||||
version_major=2
|
version_major=2
|
||||||
version_minor=6
|
version_minor=5
|
|
@ -1,7 +1,6 @@
|
||||||
package thetadev.constructionwand.client;
|
package thetadev.constructionwand.client;
|
||||||
|
|
||||||
import com.mojang.blaze3d.vertex.PoseStack;
|
import com.mojang.blaze3d.vertex.PoseStack;
|
||||||
import net.minecraft.client.Minecraft;
|
|
||||||
import net.minecraft.client.gui.components.Button;
|
import net.minecraft.client.gui.components.Button;
|
||||||
import net.minecraft.client.gui.screens.Screen;
|
import net.minecraft.client.gui.screens.Screen;
|
||||||
import net.minecraft.network.chat.Component;
|
import net.minecraft.network.chat.Component;
|
||||||
|
@ -54,13 +53,9 @@ public class ScreenWand extends Screen
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean keyPressed(int keyCode, int scanCode, int modifiers) {
|
public boolean charTyped(char character, int code) {
|
||||||
if (Minecraft.getInstance().options.keyInventory.matches(keyCode, scanCode)) {
|
if(character == 'e') onClose();
|
||||||
this.onClose();
|
return super.charTyped(character, code);
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
return super.keyPressed(keyCode, scanCode, modifiers);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void createButton(int cx, int cy, IOption<?> option) {
|
private void createButton(int cx, int cy, IOption<?> option) {
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 5.5 KiB |
Loading…
Reference in a new issue