Return null instead of a empty string

This commit is contained in:
libraryaddict 2014-06-02 03:24:29 +12:00
parent 0afcef09b5
commit 0625db63ff

View File

@ -70,7 +70,7 @@ public class LivingWatcher extends FlagWatcher {
}
public String getCustomName() {
return (String) getValue(10, "");
return (String) getValue(10, null);
}
public float getHealth() {