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