[PR #715] [MERGED] Make fun stuff less fun #772

Closed
opened 2026-02-15 15:56:50 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/RPCS3/discord-bot/pull/715
Author: @13xforever
Created: 3/2/2021
Status: Merged
Merged: 3/2/2021
Merged by: @13xforever

Base: masterHead: vnext


📝 Commits (10+)

  • feb102d try to resist manipulation for 🔮
  • a93153e try to use username for nickname instead
  • b0f616c new string util to replace dumb quotes with proper typography
  • 671f15c add new command !fortune
  • 39105a9 current dice scoring implementation is incorrect :(
  • e7dbe3c add duplicates check on bulk import (but not for !fortune add)
  • a613fcd add ef migration for the new table
  • 5159792 enable command and do proper quote formatting
  • da89a39 do not compress exported fortune dump
  • e497d11 ugh

📊 Changes

15 files changed (+838 additions, -79 deletions)

View changed files

📝 CompatBot/Commands/ForcedNicknames.cs (+2 -2)
CompatBot/Commands/Fortune.cs (+265 -0)
📝 CompatBot/Commands/Misc.cs (+4 -3)
📝 CompatBot/CompatBot.csproj (+1 -1)
CompatBot/Database/Migrations/ThumbnailDb/20210302213749_FortuneTable.Designer.cs (+248 -0)
CompatBot/Database/Migrations/ThumbnailDb/20210302213749_FortuneTable.cs (+29 -0)
📝 CompatBot/Database/Migrations/ThumbnailDb/ThumbnailDbModelSnapshot.cs (+89 -55)
📝 CompatBot/Database/ThumbnailDb.cs (+10 -1)
📝 CompatBot/EventHandlers/TableFlipMonitor.cs (+6 -0)
📝 CompatBot/Program.cs (+2 -0)
📝 CompatBot/Utils/Extensions/DiceCoefficientOptimized.cs (+1 -1)
📝 CompatBot/Utils/Extensions/StringUtils.cs (+47 -2)
📝 CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs (+1 -1)
📝 Tests/StringUtilTests.cs (+55 -13)
fortunes.txt (+78 -0)

📄 Description

But also add more fun


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/RPCS3/discord-bot/pull/715 **Author:** [@13xforever](https://github.com/13xforever) **Created:** 3/2/2021 **Status:** ✅ Merged **Merged:** 3/2/2021 **Merged by:** [@13xforever](https://github.com/13xforever) **Base:** `master` ← **Head:** `vnext` --- ### 📝 Commits (10+) - [`feb102d`](https://github.com/RPCS3/discord-bot/commit/feb102d5bf037f5999f7de1f61cf5bba844d4f7d) try to resist manipulation for 🔮 - [`a93153e`](https://github.com/RPCS3/discord-bot/commit/a93153e4fbfd6f28e6de72ebe001426cb2ef0e2e) try to use username for nickname instead - [`b0f616c`](https://github.com/RPCS3/discord-bot/commit/b0f616c3fac6bc991f6b500d33998880ffba2fd0) new string util to replace dumb quotes with proper typography - [`671f15c`](https://github.com/RPCS3/discord-bot/commit/671f15cd315ed5cc5cdd601ac35129f15abadeb1) add new command !fortune - [`39105a9`](https://github.com/RPCS3/discord-bot/commit/39105a9d60787593044bd1cc8b915f7b9b4c83e5) current dice scoring implementation is incorrect :( - [`e7dbe3c`](https://github.com/RPCS3/discord-bot/commit/e7dbe3c47ef9fd7bb4b64fc4829940e1032cc50b) add duplicates check on bulk import (but not for !fortune add) - [`a613fcd`](https://github.com/RPCS3/discord-bot/commit/a613fcd002cbaadefb7b62e6abdb4b751635c0a7) add ef migration for the new table - [`5159792`](https://github.com/RPCS3/discord-bot/commit/5159792f5e82269fa4df0a20a23050f6b16be537) enable command and do proper quote formatting - [`da89a39`](https://github.com/RPCS3/discord-bot/commit/da89a39d9c97c0006abddc72ba0d74bc150b8639) do not compress exported fortune dump - [`e497d11`](https://github.com/RPCS3/discord-bot/commit/e497d1196ba95a7caad809856cc1fd855a49d175) ugh ### 📊 Changes **15 files changed** (+838 additions, -79 deletions) <details> <summary>View changed files</summary> 📝 `CompatBot/Commands/ForcedNicknames.cs` (+2 -2) ➕ `CompatBot/Commands/Fortune.cs` (+265 -0) 📝 `CompatBot/Commands/Misc.cs` (+4 -3) 📝 `CompatBot/CompatBot.csproj` (+1 -1) ➕ `CompatBot/Database/Migrations/ThumbnailDb/20210302213749_FortuneTable.Designer.cs` (+248 -0) ➕ `CompatBot/Database/Migrations/ThumbnailDb/20210302213749_FortuneTable.cs` (+29 -0) 📝 `CompatBot/Database/Migrations/ThumbnailDb/ThumbnailDbModelSnapshot.cs` (+89 -55) 📝 `CompatBot/Database/ThumbnailDb.cs` (+10 -1) 📝 `CompatBot/EventHandlers/TableFlipMonitor.cs` (+6 -0) 📝 `CompatBot/Program.cs` (+2 -0) 📝 `CompatBot/Utils/Extensions/DiceCoefficientOptimized.cs` (+1 -1) 📝 `CompatBot/Utils/Extensions/StringUtils.cs` (+47 -2) 📝 `CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs` (+1 -1) 📝 `Tests/StringUtilTests.cs` (+55 -13) ➕ `fortunes.txt` (+78 -0) </details> ### 📄 Description But also add more fun --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 15:56:50 -05:00
yindo closed this issue 2026-02-15 15:56:50 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: RPCS3/discord-bot#772