Skip to content

Commit

Permalink
Better version 9 check.
Browse files Browse the repository at this point in the history
  • Loading branch information
typhonrt committed Dec 19, 2021
1 parent a8bc968 commit ecf3ad4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/control/FQLHooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export default class FQLHooks
// minute in the v9 release cycle. There is a replacement module / continuing the quest log that will enable this
// functionality again with a different implementation. You can join the TyphonJS Discord server to get an
// announcement when that is available: https://discord.gg/mnbgN8f
if (!foundry.utils.isNewerVersion(game.version ?? game.data.version, '0.8.9'))
if (foundry.utils.isNewerVersion(9, game.version ?? game.data.version))
{
// Add the FQL unique Quest data type to the Foundry core data types.
CONST.ENTITY_TYPES?.push(Quest.documentName);
Expand Down

0 comments on commit ecf3ad4

Please sign in to comment.