Skip to content

Commit

Permalink
fix(leveling): Update role color from bright green to a darker shade
Browse files Browse the repository at this point in the history
  • Loading branch information
Paranoia8972 committed Dec 20, 2024
1 parent 6a09945 commit a57a9b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/pkg/commands/leveling.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ func SetChannelRequirementCommand(s *discordgo.Session, i *discordgo.Interaction
}

if roleID == "" {
color := 0x00FF00
color := 0x248045
perms := int64(discordgo.PermissionSendMessages)
hoist := true

Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/utils/leveling.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func GiveLevelRewards(s *discordgo.Session, guildID string, level int) {
}

if roleID == "" {
color := 0x00FF00
color := 0x248045
perms := int64(discordgo.PermissionSendMessages)
hoist := true
newRole, err := s.GuildRoleCreate(guildID, &discordgo.RoleParams{
Expand Down

0 comments on commit a57a9b6

Please sign in to comment.