mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-11 19:50:38 +00:00
Fixes #497
This commit is contained in:
parent
0b1dbea985
commit
b0859b250a
2 changed files with 2 additions and 2 deletions
2
pom.xml
2
pom.xml
|
@ -8,7 +8,7 @@
|
|||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
<artifactId>PlotSquared</artifactId>
|
||||
<version>3.0.6</version>
|
||||
<version>3.0.7</version>
|
||||
<name>PlotSquared</name>
|
||||
<packaging>jar</packaging>
|
||||
<build>
|
||||
|
|
|
@ -48,7 +48,7 @@ public class BukkitEconHandler extends EconHandler {
|
|||
@Override
|
||||
public double getMoney(PlotPlayer player) {
|
||||
double bal = super.getMoney(player);
|
||||
if (bal == Double.NaN) {
|
||||
if (Double.isNaN(bal)) {
|
||||
return econ.getBalance(player.getName());
|
||||
}
|
||||
return bal;
|
||||
|
|
Loading…
Reference in a new issue