diff --git a/Forbidden_Lands/Forbidden_Lands.html b/Forbidden_Lands/Forbidden_Lands.html
index 2c061b733cc..6b06605afeb 100644
--- a/Forbidden_Lands/Forbidden_Lands.html
+++ b/Forbidden_Lands/Forbidden_Lands.html
@@ -41,6 +41,7 @@
Latest Announcements
v1.9
+ - fixed a bug introduced in the last update that could cause strength to keep reseting to 0 unless set on the monster tab first.
- Small cosmetic change to the Willpower checkboxes and Ability background image.
- Fixed a bug where PC Strength could get switched to '7' when moving between the PC and Monster tab.
- Push your rolls without the API! The sheet's rolls have been updated with CRP(custom roll parsing). You can now roll your dice pool and push them directly from the chat window without having to manually adjust the pool and re-rolling. (thank you Richard for letting me mangle your MYZ CRP code for this.)
@@ -6412,7 +6413,7 @@ STRONGHOLD NOTES
// monsters(tab 3) can have a 48 max
const pc = int(values.strength_pc);
const monster = int(values.strength_monster);
- max = tab !== 2 && stat === 'strength' ? Math.min(monster, 48) : Math.min(pc, 7);
+ max = tab === 3 && stat === 'strength' ? Math.min(monster, 48) : Math.min(pc, 7);
const settings = checkMax(stat, total, max);
if (settings) setAttrs(settings);