Skip to content

Commit

Permalink
Merge pull request #697 from zymex22/issue659
Browse files Browse the repository at this point in the history
#659 fixed error on load by removen null bill billreport
  • Loading branch information
Sn1p3rr3c0n authored Feb 20, 2024
2 parents 32ee437 + 3d24369 commit 17083bd
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,12 @@ public override void SpawnSetup(Map map, bool respawningAfterLoad)
}
prf_gamecomp.RegisterAssemblerQueue(this);


//Check if the Current Bill still Exists
if (currentBillReport.bill is null)
{
//Remove Bill
currentBillReport = null;
}

}

Expand Down

0 comments on commit 17083bd

Please sign in to comment.