Nerfed $bf - now 1.8x
This commit is contained in:
parent
2848efcfb7
commit
2279b4a35e
@ -19,7 +19,7 @@ namespace NadekoBot.Modules.Administration
|
||||
public class VoicePlusTextCommands
|
||||
{
|
||||
Regex channelNameRegex = new Regex(@"[^a-zA-Z0-9 -]", RegexOptions.Compiled);
|
||||
//guildid/voiceplustextenabled
|
||||
|
||||
private ConcurrentHashSet<ulong> voicePlusTextCache;
|
||||
public VoicePlusTextCommands()
|
||||
{
|
||||
|
@ -4,6 +4,7 @@ using ImageProcessorCore;
|
||||
using NadekoBot.Attributes;
|
||||
using NadekoBot.Extensions;
|
||||
using NadekoBot.Services;
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
@ -91,9 +92,10 @@ namespace NadekoBot.Modules.Gambling
|
||||
|
||||
string str;
|
||||
if (isHeads == result)
|
||||
{
|
||||
str = $"{umsg.Author.Mention}`You guessed it!` You won {amount * 2}{Gambling.CurrencySign}";
|
||||
await CurrencyHandler.AddCurrencyAsync((IGuildUser)umsg.Author, "Betflip Gamble", amount * 2, false).ConfigureAwait(false);
|
||||
{
|
||||
var toWin = (int)Math.Round(amount * 1.8);
|
||||
str = $"{umsg.Author.Mention}`You guessed it!` You won {toWin}{Gambling.CurrencySign}";
|
||||
await CurrencyHandler.AddCurrencyAsync((IGuildUser)umsg.Author, "Betflip Gamble", toWin, false).ConfigureAwait(false);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -636,7 +636,7 @@ namespace NadekoBot.Resources {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Bet to guess will the result be heads or tails. Guessing awards you double the currency you've bet..
|
||||
/// Looks up a localized string similar to Bet to guess will the result be heads or tails. Guessing awards you 1.8x the currency you've bet..
|
||||
/// </summary>
|
||||
public static string betflip_desc {
|
||||
get {
|
||||
|
@ -1174,7 +1174,7 @@
|
||||
<value>betflip bf</value>
|
||||
</data>
|
||||
<data name="betflip_desc" xml:space="preserve">
|
||||
<value>Bet to guess will the result be heads or tails. Guessing awards you double the currency you've bet.</value>
|
||||
<value>Bet to guess will the result be heads or tails. Guessing awards you 1.8x the currency you've bet.</value>
|
||||
</data>
|
||||
<data name="betflip_usage" xml:space="preserve">
|
||||
<value>`{0}bf 5 heads` or `{0}bf 3 t`</value>
|
||||
|
Loading…
Reference in New Issue
Block a user