Removing some f and adding some u.

This commit is contained in:
Olof Larsson 2013-04-25 14:15:25 +02:00
parent a05a7570a2
commit c6757fae60

View File

@ -28,22 +28,22 @@ public class Econ
// UTIL // UTIL
// -------------------------------------------- // // -------------------------------------------- //
public static boolean payForAction(double cost, UPlayer fsender, String actionDescription) public static boolean payForAction(double cost, UPlayer usender, String actionDescription)
{ {
if (!isEnabled(fsender)) return true; if (!isEnabled(usender)) return true;
if (cost == 0D) return true; if (cost == 0D) return true;
if (fsender.isUsingAdminMode()) return true; if (usender.isUsingAdminMode()) return true;
UConf uconf = UConf.get(fsender); UConf uconf = UConf.get(usender);
Faction fsenderFaction = fsender.getFaction(); Faction usenderFaction = usender.getFaction();
if (uconf.bankEnabled && uconf.bankFactionPaysCosts && fsenderFaction.isNormal()) if (uconf.bankEnabled && uconf.bankFactionPaysCosts && usenderFaction.isNormal())
{ {
return modifyMoney(fsenderFaction, -cost, actionDescription); return modifyMoney(usenderFaction, -cost, actionDescription);
} }
else else
{ {
return modifyMoney(fsender, -cost, actionDescription); return modifyMoney(usender, -cost, actionDescription);
} }
} }