
Hello, I have a ScriptCard macro I use in my game that stopped working with the latest SelectManager. It works if I use the 1.0.13 version of SelectManager but it fails to select the token with the 1.1.0 version. !scriptcard {{ --/|TODO: read season from stored string var --/|TODO: read weather description from handout? --/|TODO: add sound effects for various weather effects --/|Requires: SC 2.1.8+, SelectManager, 5E Resting in Style --#title|Begin New Day --#reentrant|gmrestcard --#whisper|gm --#overrideTemplate|generic --/|VARIABLES --&Season|summer --:GetPlayerTokens| --~TokenCount|array;pagetokens;RestTokenArr;[*C:playerpageid];pc --?[&TokenCount] -eq 0|ErrMsg --:RollForWeather| --=CurrentDayWeather|[T#weather-[&Season]] --?"[$CurrentDayWeather.tableEntryText]" -eq "High Winds"|=WindDirection;1d4 --?[$WindDirection] -eq 1|&WindDirection;West --?[$WindDirection] -eq 2|&WindDirection;North --?[$WindDirection] -eq 3|&WindDirection;East --?[$WindDirection] -eq 4|&WindDirection;South --?"[$CurrentDayWeather.tableEntryText]" -eq "Strange Phenomena"|=Phenomena;[T#weather-strange_phenomena] --+Weather|[$CurrentDayWeather.tableEntryText] [&WindDirection] [$Phenomena.tableEntryText][hr] --:DisplayPlayerRestButtons| --~RestTIDList|array;stringify;RestTokenArr; , --%PCTID|foreach;RestTokenArr --+[*[&PCTID]:t-name]|[r][rbutton]SR::PlayerShortRest;[&PCTID][/rbutton] [rbutton]LR::PlayerLongRest;[&PCTID][/rbutton][/r] --%| --+All Players|[rbutton]SR::PlayerShortRest;[&RestTIDList][/rbutton] [rbutton]LR::PlayerLongRest;[&RestTIDList][/rbutton] --X| --:PlayerLongRest|TokenID --@long-rest|{^& select [&reentryval] } -->Done| --:PlayerShortRest|TokenID --@short-rest|{^& select [&reentryval] } -->Done| --:ErrMsg| --#emoteText|No Tokens Found --+ERROR|No Player Tokens were found on player page -->Done| --:Done| }} The token_id is still being passed in via the re-entry as before but now SelectManager doesn't seem to select the token and the Resting in Style script returns the warning that no tokens were selected. Can anyone help troubleshoot what I need to update to get this working with the latest version? Thank you.