--- deliantra/maps/perl/bank.ext 2006/05/22 19:49:48 1.12 +++ deliantra/maps/perl/bank.ext 2006/05/23 11:12:21 1.13 @@ -72,8 +72,8 @@ unless $amount =~ /^\d+$/; # First check for possible overflow and user stupidity - if ($amount > 10000) { - return "Sorry, we do not handle more than 10000 units for one ".$action."."; + if ($amount > 100000) { + return "Sorry, we do not handle more than 100000 units for one ".$action."."; } elsif ($amount == 0) { return "You can not ".$action." nothing."; } elsif ($amount < 0) {