0
0
mirror of https://github.com/Wurst-Imperium/Wurst7.git synced 2024-09-20 01:12:13 +02:00

Update to 21w05a

This commit is contained in:
Alexander01998 2021-02-04 18:17:54 +01:00
parent ce6f56df7e
commit dfcde895ad
3 changed files with 7 additions and 7 deletions

View File

@ -4,15 +4,15 @@ org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html and
# https://www.curseforge.com/minecraft/mc-mods/fabric-api
minecraft_version=21w03a
yarn_mappings=21w03a+build.1
minecraft_version=21w05a
yarn_mappings=21w05a+build.2
loader_version=0.11.1
#Fabric api
fabric_version=0.29.5+1.17
fabric_version=0.30.1+1.17
# Mod Properties
mod_version = v7.11-MC21w03a
mod_version = v7.11-MC21w05a
maven_group = net.wurstclient
archives_base_name = Wurst-Client

View File

@ -57,7 +57,7 @@ public enum WurstClient
public static final IMinecraftClient IMC = (IMinecraftClient)MC;
public static final String VERSION = "7.11";
public static final String MC_VERSION = "21w03a";
public static final String MC_VERSION = "21w05a";
private WurstAnalytics analytics;
private EventManager eventManager;

View File

@ -38,7 +38,7 @@ public final class SkinDerpHack extends Hack implements UpdateListener
EVENTS.remove(UpdateListener.class, this);
for(PlayerModelPart part : PlayerModelPart.values())
MC.options.setPlayerModelPart(part, true);
MC.options.togglePlayerModelPart(part, true);
}
@Override
@ -48,7 +48,7 @@ public final class SkinDerpHack extends Hack implements UpdateListener
return;
for(PlayerModelPart part : PlayerModelPart.values())
MC.options.setPlayerModelPart(part,
MC.options.togglePlayerModelPart(part,
!MC.options.isPlayerModelPartEnabled(part));
}
}