Skip to content

Commit

Permalink
Merge pull request #144 from devFelicity/develop
Browse files Browse the repository at this point in the history
Release v8.0.2 (23-06-2023)
  • Loading branch information
Willow authored Jun 23, 2023
2 parents 8f27d17 + 07bd01b commit dd20dd0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v2

- name: Run Changelog CI
uses: saadmk11/changelog-ci@v1.1.1
uses: MoonieGZ/changelog-ci-cz@v1.0.1
with:
changelog_filename: CHANGELOG.md
config_file: .github/changelog-ci-config.yml
Expand Down
12 changes: 10 additions & 2 deletions Felicity/DiscordCommands/Interactions/CraftingCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public async Task Crafted()
//$"\n> {FormattedWeaponLevel(highestWeaponLevel, itemList.Count > 1)} [{manifestRecord.DisplayProperties.Name}]({MiscUtils.GetLightGgLink(manifestRecord.Hash)})");
$"\n> {FormattedWeaponLevel(highestWeaponLevel, itemList.Count > 1)} - {manifestRecord.DisplayProperties.Name}");

if (itemList.Count > 1 && !embed.Description.Contains("* = "))
if (itemList.Count > 1 && !embed.Description.Contains("`*` = "))
embed.Description +=
"\n\n`*` = Multiple crafted weapons are in your inventory, only the highest level is returned.";
}
Expand Down Expand Up @@ -259,7 +259,15 @@ public async Task Recipes(
}

if (page.Fields.Count == 0)
page.Description += "\n\nYou have completed all available patterns.";
{
if (pageList.Count == 0)
{
page.Description += "\n\nYou have completed all available patterns.";
pageList.Add(page);
}

continue;
}

pageList.Add(page);
}
Expand Down
3 changes: 2 additions & 1 deletion Felicity/Services/Hosted/DiscordStartupService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ private static async Task OnLeftGuild(SocketGuild arg)
var buggedServers = new List<ulong>
{
260978723455631373,
1068135541360578590
1068135541360578590,
719161295232040961
};

if (buggedServers.Contains(arg.Id))
Expand Down

0 comments on commit dd20dd0

Please sign in to comment.