-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Wurmatron
committed
Jan 16, 2017
1 parent
9fa0e18
commit 1a67b34
Showing
5 changed files
with
39 additions
and
5 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
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,5 +1,7 @@ | ||
mod_name=Viral | ||
package_group=wurmatron | ||
mod_version=0.0.2 | ||
mod_version=0.0.3 | ||
mc_version=1.10.2 | ||
forge_version=latest | ||
forge_version=latest | ||
|
||
jei_version=3.9.7.260 |
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
18 changes: 18 additions & 0 deletions
18
src/main/java/wurmatron/viral/common/intergration/jei/ViralPlugin.java
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,18 @@ | ||
package wurmatron.viral.common.intergration.jei; | ||
|
||
import mezz.jei.api.BlankModPlugin; | ||
import mezz.jei.api.IModRegistry; | ||
import mezz.jei.api.JEIPlugin; | ||
import wurmatron.viral.Viral; | ||
|
||
import javax.annotation.Nonnull; | ||
|
||
@JEIPlugin | ||
public class ViralPlugin extends BlankModPlugin { | ||
@Override | ||
public void register(IModRegistry registry) { | ||
registry.addDescription(Viral.syringeFilled, "description.filledSyringe.name"); | ||
registry.addDescription(Viral.syringeCure, "description.cureSyringe.name"); | ||
registry.addDescription(Viral.syringeImunity, "description.imunitySyringe.name"); | ||
} | ||
} |
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