summaryrefslogtreecommitdiff
path: root/java/darkknight/jewelrycraft/curses/CurseList.java
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2015-03-23 14:25:27 +0000
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2015-03-23 14:25:27 +0000
commite86949a1ad3269ec66c9de65e2c92f5e66251411 (patch)
treeabe7a3b14d7a5f7bb27a916a991f8911de94c1d2 /java/darkknight/jewelrycraft/curses/CurseList.java
parent12cb40ba14e76b999a381b1f122bfce73223fd38 (diff)
More stuff. I don't even know by this point....
Diffstat (limited to 'java/darkknight/jewelrycraft/curses/CurseList.java')
-rw-r--r--java/darkknight/jewelrycraft/curses/CurseList.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/java/darkknight/jewelrycraft/curses/CurseList.java b/java/darkknight/jewelrycraft/curses/CurseList.java
index 4a46232..4e796ff 100644
--- a/java/darkknight/jewelrycraft/curses/CurseList.java
+++ b/java/darkknight/jewelrycraft/curses/CurseList.java
@@ -5,7 +5,7 @@ import darkknight.jewelrycraft.lib.Reference;
public class CurseList
{
- private static Curse rotten, flaming, blind, greed;
+ private static Curse rotten, flaming, blind, greed, infamy;
private static boolean isInitialized = false;
/**
@@ -18,6 +18,7 @@ public class CurseList
flaming = new CurseFlamingSoul(1, Reference.MODNAME + ":" + "Flaming Soul", 0);
greed = new CurseGreed(2, Reference.MODNAME + ":" + "Greed", 0);
blind = new CurseBlind(3, Reference.MODNAME + ":" + "Blind", 0);
+ infamy = new CurseInfamy(4, Reference.MODNAME + ":" + "Infamy", 0);
isInitialized = true;
}
}