Skip to content
This repository has been archived by the owner on Oct 26, 2024. It is now read-only.

Commit

Permalink
Add support for Forge 44.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ojaha065 committed Jul 16, 2023
1 parent 273673a commit a9242c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'net.minecraftforge.gradle' version '5.1.+'
}

version = '1.19-1.1.0.0'
version = '1.19-1.1.0.1'
group = 'fi.kissakala'
base.archivesName = 'pishockmc'

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/fi/kissakala/pishockmc/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private static ForgeConfigSpec.Builder build(final ForgeConfigSpec.Builder build
.defineEnum("mode", PiShockAPI.OP_CODE.Shock, PiShockAPI.OP_CODE.values());

intensity = builder
.comment("Set the shock/vibration/beep intensity range", "Ranges from lowest to highest are: 1 - 20, 21 - 40, 41 - 60, 61 - 80, 80 - 100")
.comment("Set the shock/vibration/beep intensity range", "The percentage ranges from lowest to highest are: 1 - 20, 21 - 40, 41 - 60, 61 - 80, 80 - 100")
.defineEnum("intensity_range", INTENSITY_SETTING_VALUE.MINIMAL, INTENSITY_SETTING_VALUE.values());

// TODO: Make the punishment (duration, intensity etc.) configurable
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
modLoader="javafml"
loaderVersion="[45,)"
loaderVersion="[44,)"
license="MIT"
issueTrackerURL="https://github.com/ojaha065/PiShockForMC/issues"

[[mods]]
modId="pishockmc"
version="1.19-1.1.0.0"
version="1.19-1.1.0.1"
displayName="PiShock for Minecraft"

#updateJSONURL="https://change.me.example.invalid/updates.json" # TODO
Expand All @@ -32,7 +32,7 @@ displayTest="IGNORE_ALL_VERSION" # This is a client-only mod
[[dependencies.pishockmc]]
modId="forge"
mandatory=true
versionRange="[45,)"
versionRange="[44,)"
ordering="AFTER"
side="BOTH"
[[dependencies.pishockmc]]
Expand Down

0 comments on commit a9242c0

Please sign in to comment.