Skip to content

Commit

Permalink
DataStorage EndPlaythrough() don't expire data immediately
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed May 6, 2024
1 parent f4cb7ec commit cdb9291
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/release_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ If you don't know what Deus Ex Randomizer is, then here's our old trailer which

## Major Changes

*
-

## Minor Changes

<details>
<summary>Click to expand Minor Changes</summary>

*
-
</details>

Download `DXRandoInstaller.exe` in the Assets section right below this line:
2 changes: 1 addition & 1 deletion DXRCore/DeusEx/Classes/DataStorage.uc
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function EndPlaythrough()
slen = Len(pid);
time = SystemTime();
expired = time-1;
expired = time + 86400;
for( i=0; i < ArrayCount(config_data); i++) {
if( ! IsCurrentData(config_data[i], time) ) continue;
if( Right(config_data[i].key, slen) != pid ) continue;
Expand Down

0 comments on commit cdb9291

Please sign in to comment.