mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
Re-fixed the rarity.
This commit is contained in:
@@ -211,11 +211,13 @@ class TableModel extends AbstractTableModel {
|
||||
return "";
|
||||
case 6:
|
||||
String rarity = c.getRarity();
|
||||
//if(rarity.length() > 0) rarity = rarity.substring(0, 1);
|
||||
|
||||
if (rarity.equals("new"))
|
||||
return "n";
|
||||
else
|
||||
rarity = rarity.substring(0,1);
|
||||
else {
|
||||
if (rarity.length() > 0)
|
||||
rarity = rarity.substring(0, 1);
|
||||
}
|
||||
|
||||
if (!c.getCurSetCode().equals("")){
|
||||
SetInfo si = SetInfoUtil.getSetInfo_Code(c.getSets(), c.getCurSetCode());
|
||||
|
||||
Reference in New Issue
Block a user