DAtaModels + Appv2 migration : OK

This commit is contained in:
2026-04-02 22:14:30 +02:00
parent 7a2a3df391
commit 9fd13b2615
4 changed files with 133 additions and 54 deletions

View File

@@ -167,7 +167,7 @@ Hooks.on("chatMessage", (html, content, msg) => {
if (content[0] == '/') {
let regExp = /(\S+)/g;
let commands = content.match(regExp);
if (game.system.mournblade.commands.processChatCommand(commands, content, msg)) {
if (game.system.mournbladecyd2.commands?.processChatCommand(commands, content, msg)) {
return false;
}
}