Skip to content

Commit

Permalink
fixes + revert ver bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Paneedah committed Mar 13, 2023
1 parent cd0c12d commit 0e6815d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ minecraft {
}

runClient {
args '--username=Player1'
args '--username=ModernDev'
}

// Replace version in `mcmod.info`
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ org.gradle.caching = true

# Mod Version
# Versioning must follow Ragnarök versioning convention: https://gist.github.com/JustDesoroxxx/5d4a45785ce19a6653ba99f72325c703
mod_version = 0.1-Dev-8
mod_version = 0.1-Dev-7
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import net.minecraft.item.ItemStack;

import javax.annotation.Nullable;
import java.util.Collections;
import java.util.List;

public class BetterAINearestAttackableTarget<T extends EntityLivingBase> extends EntityAINearestAttackableTarget<T> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ public static void forceSkin(String type) {

NetworkPlayerInfo npi = null;
try { npi = (NetworkPlayerInfo) f.invoke((AbstractClientPlayer) mc.player, null); }
catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException e) { e.printStackTrace(); }
catch (Exception e) { e.printStackTrace(); }

if(npi != null) {
try {
Expand Down

0 comments on commit 0e6815d

Please sign in to comment.