Fixed Money Spam if Amount is 0
This commit is contained in:
@@ -33,6 +33,12 @@ public class CmdMoneyTransferFf extends FCommand {
|
||||
@Override
|
||||
public void perform(CommandContext context) {
|
||||
double amount = context.argAsDouble(0, 0d);
|
||||
|
||||
if(amount <= 0){
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
EconomyParticipator from = context.argAsFaction(1);
|
||||
if (from == null) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user