Lodestar button bug

04/09/2021 19:04 Hikari Kuina#1
Does anyone experience this kind of bug where when you die and press the lodestar button the menu/app still open. I was assuming the after pressing the button the revival app/menu will be close. I attached a gif to show what I am saying.
If you know where to fix it or how please help me. Thanks

04/09/2021 19:33 Nιgнтмαяε#2
Add:
Code:
BOOL CWndRevival::Process()
{
	if (!g_pPlayer->IsDie())
		Destroy();

	return TRUE;
}
To WndField.cpp above:
Code:
class CWantedMessageBox : public CWndMessageBox
04/10/2021 11:43 Hikari Kuina#3
Quote:
Originally Posted by Nιgнтмαяε View Post
Add:
Code:
BOOL CWndRevival::Process()
{
	if (!g_pPlayer->IsDie())
		Destroy();

	return TRUE;
}
To WndField.cpp above:
Code:
class CWantedMessageBox : public CWndMessageBox
Thank you.