diff --git a/src/com/massivecraft/factions/integration/Econ.java b/src/com/massivecraft/factions/integration/Econ.java index 217fdb0c..5bd0e4e1 100644 --- a/src/com/massivecraft/factions/integration/Econ.java +++ b/src/com/massivecraft/factions/integration/Econ.java @@ -96,7 +96,6 @@ public class Econ } // Otherwise you may not! ;,,; - i.msg("%s lacks permission to control %s's money.", i.describeTo(i, true), you.describeTo(i)); return false; } @@ -119,7 +118,11 @@ public class Econ } // Check the rights - if ( ! canIControllYou(by, from)) return false; + if ( ! canIControllYou(by, from)) + { + by.msg("%s lacks permission to control %s's money.", by.describeTo(by, true), from.describeTo(by)); + return false; + } // Is there enough money for the transaction to happen? if (Money.get(from) < amount)