fix: rename Mathsumoto to Zundamon

This commit is contained in:
Andrew Glaze
2026-02-28 13:06:25 -05:00
parent 1435890218
commit ce73aa8099
2 changed files with 3 additions and 3 deletions

View File

@@ -21,9 +21,9 @@ struct MessageHandler {
case "domath": try await Wolfram.handleMath(args, client: client, ctx: ctx)
default: break
}
} else if ctx.mentions.contains(where: { $0.id == Mathsumoto.ownID }) {
} else if ctx.mentions.contains(where: { $0.id == Zundamon.ownID }) {
if ctx.content
.replacingOccurrences(of: "<@\(Mathsumoto.ownID!.rawValue)>", with: "")
.replacingOccurrences(of: "<@\(Zundamon.ownID!.rawValue)>", with: "")
.trimmingCharacters(in: .whitespacesAndNewlines)
.count == 0,
let zundaGif = MessageHandler.zundaGifData

View File

@@ -3,7 +3,7 @@ import DiscordBM
import SwiftDotenv
@main
struct Mathsumoto {
struct Zundamon {
nonisolated(unsafe) static private(set) var ownID: UserSnowflake? = nil
static func main() async throws {