We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks for this awesome mod, but please could you add an option in the game menu to disable the pause when opening the journal?
It would make playing multiplayer much enjoyable.
The text was updated successfully, but these errors were encountered:
If someone is looking for temporary solution:
In override/UI.menu find fragment:
function pauseJournal() if not worldScreen:CheckIfPaused() then worldScreen:TogglePauseGame(true) end end
and change if not worldScreen:CheckIfPaused() then to if not worldScreen:CheckIfPaused() and not e:IsMultiplayer() then
if not worldScreen:CheckIfPaused() then
if not worldScreen:CheckIfPaused() and not e:IsMultiplayer() then
Then few lines below there is fragment:
onClose " showJournal = 0 if not wasPaused then worldScreen:TogglePauseGame(true) end "
and change if not wasPaused then to if not wasPaused and not e:IsMultiplayer() then.
if not wasPaused then
if not wasPaused and not e:IsMultiplayer() then
Sorry, something went wrong.
Compatibility with Remastered Spell Icons (step #1)
30ef099
No branches or pull requests
Thanks for this awesome mod, but please could you add an option in the game menu to disable the pause when opening the journal?
It would make playing multiplayer much enjoyable.
The text was updated successfully, but these errors were encountered: