Import RMFRP tables + properly rename all files

This commit is contained in:
2024-08-15 22:25:07 +02:00
parent aad90144fe
commit fe36edfeff
110 changed files with 158657 additions and 462 deletions

6
module/controls.js vendored
View File

@ -14,13 +14,13 @@ function getSceneControlButtons(controls) {
layer: "ControlsLayer",
tools: [
{
name: "rmmsdiceroller",
name: "rmfrpdiceroller",
title: "Dice Roller",
icon: "fas fa-dice",
onClick: () => { return new game.rmss.applications.RMSSToolsDiceRoller().render(true); },
onClick: () => { return new game.rmfrp.applications.RMSSToolsDiceRoller().render(true); },
button: true
}
],
activeTool: "rmmsdiceroller"
activeTool: "rmfrpdiceroller"
});
}