-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add mod, remove loading plugin, bump version
Closes #5
- Loading branch information
1 parent
8a06ed8
commit 106c697
Showing
5 changed files
with
16 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
mod_version = 1.2.0 | ||
mod_version = 1.3.0 | ||
group = net.shadowfacts | ||
archivesBaseName = Forgelin | ||
|
||
|
37 changes: 0 additions & 37 deletions
37
src/main/java/net/shadowfacts/forgelin/ForgelinPlugin.java
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package net.shadowfacts.forgelin | ||
|
||
import net.minecraftforge.fml.common.Mod | ||
|
||
/** | ||
* @author shadowfacts | ||
*/ | ||
@Mod(modid = Forgelin.MOD_ID, name = Forgelin.NAME, version = Forgelin.VERSION, acceptableRemoteVersions = "*", acceptedMinecraftVersions = "*", modLanguageAdapter = "net.shadowfacts.forgelin.KotlinAdapter") | ||
object Forgelin { | ||
|
||
const val MOD_ID = "forgelin" | ||
const val NAME = "Forgelin" | ||
const val VERSION = "1.3.0" | ||
|
||
} |
This file was deleted.
Oops, something went wrong.