Skip to content

Commit

Permalink
publish 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Ecdcaeb authored May 25, 2024
1 parent b02b66c commit 955eae5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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 @@ if (useMirror) apply from: "mirror.gradle"
apply plugin: "net.minecraftforge.gradle.forge"
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.

version = "1.3 for 1.12.2-1.8.8"
version = "1.4 for 1.12.2-1.8.8"
group = "com.ideallandframework.silent_assassin" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "redirectionor"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public RedirectionorContainer(){
metadata.modId=Redirectionor.MODID;
metadata.name="Redirectionor";
metadata.description="Redirectionor is the implementation of this concept, specifically for the Direction enum class stuff, to reduce the required memory of the game.";
metadata.version="1.3 for 1.12.2-1.8.8";
metadata.version="1.4 for 1.12.2-1.8.8";
metadata.url="https://www.curseforge.com/minecraft/mc-mods/redirectionor";
metadata.logoFile="/icon_redirectionor.png";
metadata.authorList.add("MCTeamPotato");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public byte[] transform(String name, String transformedName, byte[] basicClass)
if (isDeBug)System.out.println("Redirect "+transformedName);
}
}
ClassWriter classWriter=new ClassWriter(classReader,ClassWriter.COMPUTE_FRAMES | ClassWriter.COMPUTE_MAXS);
ClassWriter classWriter=new ClassWriter(classReader, 0);
cn.accept(classWriter);
return classWriter.toByteArray();
}catch (Exception ignore){
Expand Down

0 comments on commit 955eae5

Please sign in to comment.