summaryrefslogtreecommitdiff
path: root/java/darkknight/jewelrycraft/curses/CurseList.java
diff options
context:
space:
mode:
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;
}
}