Skip to content

Commit

Permalink
Fixed bug causing reroll to revert when rerolling to a character that…
Browse files Browse the repository at this point in the history
… is in a pvp area
  • Loading branch information
3vcloud committed Sep 19, 2024
1 parent d197385 commit b69a8d2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions GWToolboxdll/Windows/RerollWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -555,6 +555,11 @@ void RerollWindow::Update(float)
RerollFailed(L"Reroll timed out");
return;
}
if (GWToolbox::ShouldDisableToolbox()) {
RerollSuccess();
return;
}

GW::PreGameContext* pgc = GW::GetPreGameContext();
switch (reroll_stage) {
case PendingLogout: {
Expand Down

0 comments on commit b69a8d2

Please sign in to comment.