mirror of
				https://gitlab.com/Kwoth/nadekobot.git
				synced 2025-11-03 16:24:27 -05:00 
			
		
		
		
	Fixed .cash bank interaction not being ephemeral
This commit is contained in:
		@@ -2,6 +2,12 @@
 | 
			
		||||
 | 
			
		||||
Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog.com/en/1.0.0/) except date format. a-c-f-r-o
 | 
			
		||||
 | 
			
		||||
## [4.2.13] - 30.06.2022
 | 
			
		||||
 | 
			
		||||
### Fixed
 | 
			
		||||
 | 
			
		||||
- Fixed `.cash` bank interaction not being ephemeral anymore
 | 
			
		||||
 | 
			
		||||
## [4.2.12] - 30.06.2022
 | 
			
		||||
 | 
			
		||||
### Fixed
 | 
			
		||||
@@ -19,7 +25,7 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog.
 | 
			
		||||
- Fixed currency generation working only once
 | 
			
		||||
 | 
			
		||||
## [4.2.9] - 25.06.2022
 | 
			
		||||
 | 
			
		||||
  
 | 
			
		||||
### Fixed
 | 
			
		||||
 | 
			
		||||
- Fixed `creds_example.yml` misssing from output directory
 | 
			
		||||
 
 | 
			
		||||
@@ -7,7 +7,7 @@ namespace NadekoBot.Services;
 | 
			
		||||
 | 
			
		||||
public sealed class StatsService : IStatsService, IReadyExecutor, INService
 | 
			
		||||
{
 | 
			
		||||
    public const string BOT_VERSION = "4.2.12";
 | 
			
		||||
    public const string BOT_VERSION = "4.2.13";
 | 
			
		||||
 | 
			
		||||
    public string Author
 | 
			
		||||
        => "Kwoth#2452";
 | 
			
		||||
 
 | 
			
		||||
@@ -58,7 +58,8 @@ public static class SocketMessageComponentExtensions
 | 
			
		||||
        bool ephemeral = false)
 | 
			
		||||
        => smc.RespondAsync(plainText,
 | 
			
		||||
            embed: embed?.Build(),
 | 
			
		||||
            embeds: embeds?.Map(x => x.Build()));
 | 
			
		||||
            embeds: embeds?.Map(x => x.Build()),
 | 
			
		||||
            ephemeral: ephemeral);
 | 
			
		||||
    
 | 
			
		||||
    public static Task RespondAsync(
 | 
			
		||||
        this SocketMessageComponent ch,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user