added wiki link + updated some wiki pages

This commit is contained in:
Vlyan
2022-07-28 10:24:42 +02:00
parent ba5f27674d
commit 7a6ea9932d
14 changed files with 63 additions and 33 deletions

View File

@@ -531,7 +531,7 @@ export class CharacterGenerator {
/**
* Techs config
*
* exemple: {
* example: {
* probability: .7,
* skill: {
* grp_name: "scholar",

View File

@@ -191,7 +191,7 @@ export class DicePickerDialog extends FormApplication {
*/
set actor(actor) {
if (!actor || !(actor instanceof Actor) || !actor.isOwner) {
console.log("L5R5E | DP | Actor rejected", actor);
console.info("L5R5E | DP | Actor rejected", actor);
return;
}
this._actor = actor;
@@ -702,7 +702,7 @@ export class DicePickerDialog extends FormApplication {
/**
* Parse the difficulty from technique
*
* Exemples :
* Examples :
* "@S:vigilance"
* "@T:vigilance"
* "@T:vigilance|min"

View File

@@ -65,7 +65,10 @@ export default class HooksL5r5e {
case "settings":
// Add Changelog link
html.find("#game-details .system").append(
`<p><a href="${game.system.changelog}" target="_blank">Changelog</a></p>`
`<p><a href="${game.system.changelog}" target="_blank">Changelog</a>` +
` <a href="${game.i18n.localize(
"l5r5e.settings.wiki.link"
)}" target="_blank">${game.i18n.localize("l5r5e.settings.wiki.title")}</a></p>`
);
break;
}