--- deliantra/server/ext/bank.ext 2008/05/02 16:16:02 1.6 +++ deliantra/server/ext/bank.ext 2008/09/22 01:33:09 1.7 @@ -92,6 +92,7 @@ if ($command eq "") { return "You can: + deposit withdraw balance @@ -107,19 +108,19 @@ return "I can tell you how much money you are saving in our bank, just ask me about your balance."; } elsif ($command eq "rates") { my @coins = cf::coin_archetypes; - my $exchange_rates = "Here is a list of exchange rates:\n\n\n"; + my $exchange_rates = "Here is a list of exchange rates:\n\n"; for my $f (0 .. $#coins) { for my $t ($f + 1 .. $#coins) { $exchange_rates .= - sprintf "One %s is %d %s.\n\n", + sprintf " One %s is %d %s.\n", $coins[$f]->name, (calc_exchange_rate 1, $coins[$f], $coins[$t]), $coins[$t]->name_pl; } } - return "$exchange_rates\n\nThis may change a bit with the stock markets but don't expect it to be much."; + return "$exchange_rates\nThis may change a bit with the stock markets but don't expect it to be much."; } }