mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
- Fixed the isEmpty() bug (for Java 1.5 users)
This commit is contained in:
@@ -978,7 +978,8 @@ public class CardFactory implements NewConstants {
|
||||
|
||||
sbD.append(Math.abs(NumDefense[0]) + " and gains " + Keyword[0] + " until end of turn.");
|
||||
}
|
||||
if (!sbD.toString().isEmpty())
|
||||
//if (!sbD.toString().isEmpty())
|
||||
if (!sbD.toString().trim().equals(""))
|
||||
d = sbD.toString();
|
||||
|
||||
if (k.length > 2)
|
||||
|
||||
Reference in New Issue
Block a user