Fix initialization in non-persistent mode

This commit is contained in:
Your Name
2022-02-08 08:58:35 +00:00
parent a5dc067331
commit 452eb9f75b

View File

@ -78,6 +78,12 @@ void entry_init(void) {
void entry_start(void) {
if (persistent_start == 0) {
ranges_exclude();
stalker_trust();
}
if (entry_point == 0) { entry_launch(); }
}