Add an unlocalized name to Imperfect Rituals

This commit is contained in:
Nick 2016-01-01 18:54:58 -08:00
parent 18c1ccae80
commit fa030a1d43
6 changed files with 13 additions and 7 deletions

View file

@ -23,6 +23,7 @@ public abstract class ImperfectRitual
private final BlockStack requiredBlock;
private final int activationCost;
private final boolean lightshow;
private final String unlocalizedName;
/**
* @param name
@ -32,9 +33,9 @@ public abstract class ImperfectRitual
* @param activationCost
* - Base LP cost for activating the ritual
*/
public ImperfectRitual(String name, BlockStack requiredBlock, int activationCost)
public ImperfectRitual(String name, BlockStack requiredBlock, int activationCost, String unlocalizedName)
{
this(name, requiredBlock, activationCost, false);
this(name, requiredBlock, activationCost, false, unlocalizedName);
}
/**