Skip to content
This repository was archived by the owner on May 12, 2024. It is now read-only.

Commit 8f13c11

Browse files
committed
Release 1.1.0
1 parent 50f424a commit 8f13c11

File tree

5 files changed

+19
-7
lines changed

5 files changed

+19
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[//]: <> (Thanks for the advice KiLAB, now I'm going to ice out the README even more)
22
[//]: <> (Don't worry, these are comments, they won't actually show on the readme :)
33

4-
[![Download button](https://img.shields.io/badge/client-download-success.svg)](https://github.com/Luna5ama/TrollHack/releases/download/1.0.1/TrollHack-1.0.0.jar)
4+
[![Download button](https://img.shields.io/badge/client-download-success.svg)](https://github.com/Luna5ama/TrollHack/releases/download/1.1.0/TrollHack-1.0.0.jar)
55
![Current version](https://img.shields.io/badge/version-1.0.0-blue)
66
![Download count](https://img.shields.io/github/downloads/Luna5ama/TrollHack/latest/total)
77

@@ -28,10 +28,10 @@ Crashing with `java.lang.IllegalAccessError: tried to access field net.minecraft
2828
- Please remove `-Xverify:none` from your launch JVM arguments.
2929

3030
Before opening an issue, please consider the following:
31-
- Are you on the very latest version? In this case, it should be 1.0.1
31+
- Are you on the very latest version? In this case, it should be 1.1.0
3232
- Did you compile it yourself, or did you use the release?
3333
- Are your graphics drivers up to date?
34-
- Are you using fast render? (If your version is below 1.0.1, you must upgrade to fix the fast render crash)
34+
- Are you using fast render? (If your version is below 1.1.0, you must upgrade to fix the fast render crash)
3535
If you're sure you've tried everything, open an issue. [How to ask a good question](https://stackoverflow.com/help/how-to-ask)
3636

3737
# Can't open the GUI?

build.gradle.kts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
import dev.fastmc.loader.ModPackagingTask
12
import dev.fastmc.loader.ModPlatform
23
import dev.fastmc.remapper.mapping.MappingName
34
import net.minecraftforge.gradle.userdev.UserDevExtension
45
import kotlin.math.max
56

67
group = "dev.luna5ama"
7-
version = "1.0.1"
8+
version = "1.1.0"
89

910
buildscript {
1011
repositories {
@@ -132,6 +133,17 @@ modLoader {
132133
}
133134

134135
tasks {
136+
register<Task>("releaseBuild") {
137+
group = "build"
138+
finalizedBy("build")
139+
140+
doFirst {
141+
named<ModPackagingTask>("modPackaging") {
142+
dictSize.set(32 * 1024 * 1024)
143+
}
144+
}
145+
}
146+
135147
afterEvaluate {
136148
getByName("reobfJar").enabled = false
137149
}

src/main/kotlin/dev/luna5ama/trollhack/TrollHackMod.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class TrollHackMod {
6161
companion object {
6262
const val NAME = "Troll Hack"
6363
const val ID = "trollhack"
64-
const val VERSION = "1.0.1"
64+
const val VERSION = "1.1.0"
6565
const val DIRECTORY = "trollhack"
6666

6767
@JvmField

src/main/kotlin/dev/luna5ama/trollhack/module/modules/combat/ZealotCrystalPlus.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,7 @@ internal object ZealotCrystalPlus : Module(
10371037
val packet = placePacket(placeInfo, EnumHand.MAIN_HAND)
10381038
onMainThread {
10391039
val slot = player.getCrystalSlot() ?: return@onMainThread
1040-
spoofHotbarBypass(slot) {
1040+
spoofHotbar(slot) {
10411041
connection.sendPacket(packet)
10421042
}
10431043
}

src/main/resources/mcmod.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"modid": "trollhack",
44
"name": "Troll Hack",
5-
"version": "1.0.1",
5+
"version": "1.1.0",
66
"mcversion": "1.12.2"
77
}
88
]

0 commit comments

Comments
 (0)