Replaced '$' formatting with '@'

This commit is contained in:
Anuken
2020-08-04 10:18:01 -04:00
parent 8dd4839f53
commit f60afc39f1
68 changed files with 458 additions and 458 deletions
@@ -51,27 +51,27 @@ public class AmmoListValue<T extends UnlockableContent> implements StatValue{
}
if((type.status == StatusEffects.burning || type.status == StatusEffects.melting) || type.incendAmount > 0){
sep(bt, "$bullet.incendiary");
sep(bt, "@bullet.incendiary");
}
if(type.status == StatusEffects.freezing){
sep(bt, "$bullet.freezing");
sep(bt, "@bullet.freezing");
}
if(type.status == StatusEffects.tarred){
sep(bt, "$bullet.tarred");
sep(bt, "@bullet.tarred");
}
if(type.homingPower > 0.01f){
sep(bt, "$bullet.homing");
sep(bt, "@bullet.homing");
}
if(type.lightning > 0){
sep(bt, "$bullet.shock");
sep(bt, "@bullet.shock");
}
if(type.fragBullet != null){
sep(bt, "$bullet.frag");
sep(bt, "@bullet.frag");
}
}).left().padTop(-9);
table.row();
@@ -12,6 +12,6 @@ public class BooleanValue implements StatValue{
@Override
public void display(Table table){
table.add(!value ? "$no" : "$yes");
table.add(!value ? "@no" : "@yes");
}
}