v0.3.0c: added a buff icon for bless

This commit is contained in:
Evan Debenham 2015-06-07 14:17:11 -04:00
parent abbdcff9ea
commit e0187cd233
4 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -14,8 +14,7 @@ public class Bless extends FlavourBuff {
@Override @Override
public int icon() { public int icon() {
//TODO: add icon return BuffIndicator.BLESS;
return BuffIndicator.FIRE;
} }
@Override @Override

View File

@ -73,6 +73,7 @@ public class BuffIndicator extends Component {
public static final int RECHARGING = 34; public static final int RECHARGING = 34;
public static final int LOCKED_FLOOR= 35; public static final int LOCKED_FLOOR= 35;
public static final int CORRUPT = 36; public static final int CORRUPT = 36;
public static final int BLESS = 37;
public static final int SIZE = 7; public static final int SIZE = 7;