Skip to content
New issue

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

No pause while journal is open, menu option #1

Open
mmgmp opened this issue Dec 16, 2022 · 1 comment
Open

No pause while journal is open, menu option #1

mmgmp opened this issue Dec 16, 2022 · 1 comment

Comments

@mmgmp
Copy link

mmgmp commented Dec 16, 2022

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.

@mmgmp mmgmp changed the title No pause in journal option No pause whe opening the journal, menu option Dec 16, 2022
@mmgmp mmgmp changed the title No pause whe opening the journal, menu option No pause while journal is open, menu option Dec 17, 2022
@m-architek
Copy link

m-architek commented Apr 22, 2023

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

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants