-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated for Forge 1.12 #13
base: master
Are you sure you want to change the base?
Conversation
…NiceStringFromCollection(targets)))'
import java.util.concurrent.ConcurrentMap; | ||
import java.util.concurrent.Semaphore; | ||
|
||
@Mod(modid="simpleretrogen", name="Simple Retrogen", acceptableRemoteVersions="*", acceptedMinecraftVersions = "[1.9,1.11)") | ||
@Mod(modid="simpleretrogen", name="Simple Retrogen", acceptableRemoteVersions="*", acceptedMinecraftVersions = "[1.9,1.12]") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For consistency and to handle subversions of 1.12, the acceptedMinecraftVersions
string should probably be set to [1.9,1.13)
.
Signed-off-by: Hexeption <[email protected]>
Signed-off-by: Hexeption <[email protected]>
import java.util.concurrent.ConcurrentMap; | ||
import java.util.concurrent.Semaphore; | ||
|
||
@Mod(modid="simpleretrogen", name="Simple Retrogen", acceptableRemoteVersions="*", acceptedMinecraftVersions = "[1.9,1.11)") | ||
@Mod(modid="simpleretrogen", name="Simple Retrogen", acceptableRemoteVersions="*", acceptedMinecraftVersions = "[1.9,1.12]") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will not work with Minecraft 1.12.1; acceptedMinecraftVersions
should be [1.9,1.13)
, not[1.9,1.12]
.
import java.util.concurrent.ConcurrentMap; | ||
import java.util.concurrent.Semaphore; | ||
|
||
@Mod(modid="simpleretrogen", name="Simple Retrogen", acceptableRemoteVersions="*", acceptedMinecraftVersions = "[1.9,1.11)") | ||
@Mod(modid="simpleretrogen", name="Simple Retrogen", acceptableRemoteVersions="*", acceptedMinecraftVersions = "[1.9,1.13]") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You forgot to change the ]
back to a )
, since 1.13 is not targeted (i.e. the upper bound is exclusive).
@cpw ETA on merging this? |
This just fails with a number of compilation errors; are there changes to the build config also required? |
No description provided.