diff --git a/src/fvtt/page-script.js b/src/fvtt/page-script.js index fe24eea6..6f932490 100644 --- a/src/fvtt/page-script.js +++ b/src/fvtt/page-script.js @@ -130,7 +130,9 @@ class FVTTDisplayer { } return Roll.fromData(r) }); - if (isNewerVersion(fvttVersion, "0.8")) { + if (isNewerVersion(fvttVersion, "10")) { + data.rolls = fvttRolls; + } else if (isNewerVersion(fvttVersion, "0.8")) { // Foundry 0.8.x API // This will accept backware compatible fvttRolls format const pool = PoolTerm.fromRolls(fvttRolls);