Fix messages
This commit is contained in:
parent
93fd0ae3ff
commit
eefb17f549
@ -184,18 +184,20 @@ const __check_fix_wrong_modules = ( chatFlag, patchFinished ) => {
|
|||||||
if ( name == 'ogre-kingdom-wfrp4e' && module.active) {
|
if ( name == 'ogre-kingdom-wfrp4e' && module.active) {
|
||||||
WH4FRPatchConfig.perform_ogrekingdom_patch();
|
WH4FRPatchConfig.perform_ogrekingdom_patch();
|
||||||
if (game.user.isGM && chatFlag)
|
if (game.user.isGM && chatFlag)
|
||||||
ChatMessage.create( { title: "Module Ogre-Kingdom patché", content: "<strong>Le module Ogre-Kingdom a été detecté et automatiquement patché.</strong>", whisper: ChatMessage.getWhisperRecipients("GM") } );
|
ChatMessage.create( { content: "<div><strong>Le module Ogre-Kingdom a été detecté et automatiquement patché.</strong></div>", whisper: ChatMessage.getWhisperRecipients("GM") } );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( name == "wfrp4e-ew" && module.active && game.user.isGM && chatFlag) {
|
if ( name == "wfrp4e-ew" && module.active && game.user.isGM && chatFlag) {
|
||||||
ChatMessage.create( { title: "Module non compatible detecté !", content: "<strong>Vous avez le module EW (wfrp4e-ew ?) installé. Malheureusement, ce module n'est pas compatible avec" +
|
ChatMessage.create( { content: "<div><strong>Vous avez le module EW (wfrp4e-ew ?) installé. Malheureusement, ce module n'est pas compatible avec" +
|
||||||
" les traductions et vient casser le fonctionnement de la traduction. Veuillez recopier les compendiums dans votre monde, désactiver le module et re-démarrer le monde</strong>",
|
" les traductions et vient casser le fonctionnement de la traduction. Veuillez recopier les compendiums dans votre monde, désactiver le module et re-démarrer le monde</strong></div>",
|
||||||
whisper: ChatMessage.getWhisperRecipients("GM")
|
whisper: ChatMessage.getWhisperRecipients("GM")
|
||||||
} );
|
} );
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (game.user.isGM && patchFinished) {
|
if (game.user.isGM && patchFinished) {
|
||||||
ChatMessage.create( { title: "Patch fini !", content: "Les modules WFRP4E ont été patchés <strong>avec succès</strong>. Vous pouvez y aller et que <strong>Shallya vous garde !</strong>", whisper: ChatMessage.getWhisperRecipients("GM") } );
|
ChatMessage.create( { content: "<div>Les modules WFRP4E ont été <strong>patchés avec succés</strong>. Vous pouvez y aller et que <strong>Shallya vous garde !</strong></div>",
|
||||||
|
user: game.user.id,
|
||||||
|
whisper: ChatMessage.getWhisperRecipients("GM") } );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -295,8 +297,15 @@ Hooks.on("chatMessage", (html, content, msg) => {
|
|||||||
/* Additionnal hooks ready */
|
/* Additionnal hooks ready */
|
||||||
Hooks.once('ready', () => {
|
Hooks.once('ready', () => {
|
||||||
|
|
||||||
if (game.user.isGM)
|
if (game.user.isGM) {
|
||||||
ChatMessage.create( { title: "Patch en progression", content: "Les modules WFRP4E sont <strong>en cours de patch pour traduction</strong>... Merci <strong>d'attendre le message de fin</strong> (dans environ 20 secondes)<p>Pour rappel et à titre informatif, il faut activer ce module de traduction FR <strong>avant</strong> de procéder à l'importation des données des modules C7 (core compris).</p><p>Support et informations sur le Discord FR de Foundry : https://discord.gg/pPSDNJk</p>", whisper: ChatMessage.getWhisperRecipients("GM") } );
|
let chatData = {
|
||||||
|
user: game.user.id,
|
||||||
|
rollMode: game.settings.get("core", "rollMode"),
|
||||||
|
whisper: ChatMessage.getWhisperRecipients('GM'),
|
||||||
|
content: `<div>Les modules WFRP4E sont <strong>en cours de patch pour traduction</strong>... Merci <strong>d'attendre le message de fin</strong> (dans environ 20 secondes)<p>Pour rappel et à titre informatif, il faut activer ce module de traduction FR <strong>avant</strong> de procéder à l'importation des données des modules C7 (core compris). Autrement dit, activez ce module FR <strong>AVANT</strong> tout autre module.</p><p>Support et informations sur le Discord FR de Foundry : https://discord.gg/pPSDNJk</p></div>`
|
||||||
|
}
|
||||||
|
ChatMessage.create(chatData);
|
||||||
|
}
|
||||||
|
|
||||||
//setTimeout( __check_fix_wrong_modules, 2000, true, false);
|
//setTimeout( __check_fix_wrong_modules, 2000, true, false);
|
||||||
setTimeout( __check_fix_wrong_modules, 20000, true, true);
|
setTimeout( __check_fix_wrong_modules, 20000, true, true);
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
"authors": [],
|
"authors": [],
|
||||||
"url": "https://gitlab.com/LeRatierBretonnien/foundryvtt-wh4-lang-fr-fr",
|
"url": "https://gitlab.com/LeRatierBretonnien/foundryvtt-wh4-lang-fr-fr",
|
||||||
"flags": {},
|
"flags": {},
|
||||||
"version": "5.1.5",
|
"version": "5.1.6",
|
||||||
"minimumCoreVersion": "0.8.0",
|
"minimumCoreVersion": "0.8.0",
|
||||||
"compatibleCoreVersion": "9",
|
"compatibleCoreVersion": "9",
|
||||||
"scripts": [],
|
"scripts": [],
|
||||||
|
Loading…
Reference in New Issue
Block a user