Add an unlocalized name to Imperfect Rituals
This commit is contained in:
parent
18c1ccae80
commit
fa030a1d43
6 changed files with 13 additions and 7 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue