small fix
This commit is contained in:
parent
655b98d16d
commit
c1b14cc96b
@ -144,11 +144,11 @@ namespace NadekoBot.Modules.Gambling
|
||||
await ReplyErrorLocalized("min_bet_limit", 1 + CurrencySign).ConfigureAwait(false);
|
||||
return;
|
||||
}
|
||||
|
||||
if (amount > 9999)
|
||||
const int maxAmount = 9999;
|
||||
if (amount > maxAmount)
|
||||
{
|
||||
GetText("slot_maxbet", 999 + CurrencySign);
|
||||
await ReplyErrorLocalized("max_bet_limit", 999 + CurrencySign).ConfigureAwait(false);
|
||||
GetText("slot_maxbet", maxAmount + CurrencySign);
|
||||
await ReplyErrorLocalized("max_bet_limit", maxAmount + CurrencySign).ConfigureAwait(false);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -9006,7 +9006,7 @@ namespace NadekoBot.Resources {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Claim a waifu for yourself by spending currency. You must spend atleast 10% more than her current value unless she set `{0}affinity` towards you..
|
||||
/// Looks up a localized string similar to Claim a waifu for yourself by spending currency. You must spend at least 10% more than her current value unless she set `{0}affinity` towards you..
|
||||
/// </summary>
|
||||
public static string waifuclaim_desc {
|
||||
get {
|
||||
|
@ -3001,7 +3001,7 @@
|
||||
<value>claimwaifu claim</value>
|
||||
</data>
|
||||
<data name="waifuclaim_desc" xml:space="preserve">
|
||||
<value>Claim a waifu for yourself by spending currency. You must spend atleast 10% more than her current value unless she set `{0}affinity` towards you.</value>
|
||||
<value>Claim a waifu for yourself by spending currency. You must spend at least 10% more than her current value unless she set `{0}affinity` towards you.</value>
|
||||
</data>
|
||||
<data name="waifuclaim_usage" xml:space="preserve">
|
||||
<value>`{0}claim 50 @Himesama`</value>
|
||||
|
Loading…
Reference in New Issue
Block a user