Skip to content

Commit

Permalink
Removed B Prefix from Events
Browse files Browse the repository at this point in the history
  • Loading branch information
AS1100K committed Aug 19, 2024
1 parent 467bdc6 commit e19cf75
Show file tree
Hide file tree
Showing 4 changed files with 147 additions and 147 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixes
- Removed Error when the channel is empty

### Removed
- Removed `B` Prefix from Events

## [0.2.1] - 2024-08-13

## Changed
Expand Down
144 changes: 72 additions & 72 deletions src/bot/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,78 +3,78 @@ use crate::create_event_collection_and_handler;
use bevy_ecs::prelude::*;

create_event_collection_and_handler!(
BCommandPermissionsUpdate,
BAutoModerationRuleCreate,
BAutoModerationRuleUpdate,
BAutoModerationRuleDelete,
BAutoModerationActionExecution,
CommandPermissionsUpdate,
AutoModerationRuleCreate,
AutoModerationRuleUpdate,
AutoModerationRuleDelete,
AutoModerationActionExecution,
#[cfg(feature = "bot_cache")]
BCacheRead,
CacheRead,
#[cfg(feature = "bot_cache")]
BShardsReady,
BChannelCreate,
BCategoryCreate,
BCategoryDelete,
BChannelDelete,
BChannelPinUpdate,
BChannelUpdate,
BGuildAuditLogEntryCreate,
BGuildBanAddition,
BGuildBanRemoval,
BGuildCreate,
BGuildDelete,
BGuildEmojisUpdate,
BGuildIntegrationsUpdate,
BGuildMemberAddition,
BGuildMemberRemoval,
BGuildMemberUpdate,
BGuildMembersChunk,
BGuildRoleCreate,
BGuildRoleDelete,
BGuildRoleUpdate,
BGuildStickersUpdate,
BGuildUpdate,
BInviteCreate,
BInviteDelete,
BMessage,
BMessageDelete,
BMessageDeleteBulk,
BMessageUpdate,
BReactionAdd,
BReactionRemove,
BReactionRemoveAll,
BReactionRemoveEmoji,
BPresenceUpdate,
BReadyEvent,
BResume,
BShardStageUpdate,
BTypingStart,
BUserUpdate,
BVoiceServerUpdate,
BVoiceStateUpdate,
BVoiceChannelStatusUpdate,
BWebhookUpdate,
BInteractionCreate,
BIntegrationCreate,
BIntegrationUpdate,
BStageInstanceCreate,
BStageInstanceUpdate,
BStageInstanceDelete,
BThreadCreate,
BThreadUpdate,
BThreadDelete,
BThreadListSync,
BThreadMemberUpdate,
BThreadMembersUpdate,
BGuildScheduledEventCreate,
BGuildScheduledEventUpdate,
BGuildScheduledEventDelete,
BGuildScheduledEventUserAdd,
BGuildScheduledEventUserRemove,
BEntitlementCreate,
BEntitlementUpdate,
BEntitlementDelete,
BPollVoteAdd,
BPollVoteRemove,
BRateLimit
ShardsReady,
ChannelCreate,
CategoryCreate,
CategoryDelete,
ChannelDelete,
ChannelPinUpdate,
ChannelUpdate,
GuildAuditLogEntryCreate,
GuildBanAddition,
GuildBanRemoval,
GuildCreate,
GuildDelete,
GuildEmojisUpdate,
GuildIntegrationsUpdate,
GuildMemberAddition,
GuildMemberRemoval,
GuildMemberUpdate,
GuildMembersChunk,
GuildRoleCreate,
GuildRoleDelete,
GuildRoleUpdate,
GuildStickersUpdate,
GuildUpdate,
InviteCreate,
InviteDelete,
Message,
MessageDelete,
MessageDeleteBulk,
MessageUpdate,
ReactionAdd,
ReactionRemove,
ReactionRemoveAll,
ReactionRemoveEmoji,
PresenceUpdate,
ReadyEvent,
Resume,
ShardStageUpdate,
TypingStart,
UserUpdate,
VoiceServerUpdate,
VoiceStateUpdate,
VoiceChannelStatusUpdate,
WebhookUpdate,
InteractionCreate,
IntegrationCreate,
IntegrationUpdate,
StageInstanceCreate,
StageInstanceUpdate,
StageInstanceDelete,
ThreadCreate,
ThreadUpdate,
ThreadDelete,
ThreadListSync,
ThreadMemberUpdate,
ThreadMembersUpdate,
GuildScheduledEventCreate,
GuildScheduledEventUpdate,
GuildScheduledEventDelete,
GuildScheduledEventUserAdd,
GuildScheduledEventUserRemove,
EntitlementCreate,
EntitlementUpdate,
EntitlementDelete,
PollVoteAdd,
PollVoteRemove,
RateLimit
);
Loading

0 comments on commit e19cf75

Please sign in to comment.