Skip to content

Commit

Permalink
ACTUALLY suppressed saves in vehicles.
Browse files Browse the repository at this point in the history
  • Loading branch information
wito committed Jan 16, 2013
1 parent 0588d00 commit 5452d36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7892,7 +7892,7 @@ int game::autosave_timeout()

void game::autosave()
{
if (!moves_since_last_save && !item_exchanges_since_save && !u.in_vehicle)
if (u.in_vehicle || !moves_since_last_save && !item_exchanges_since_save)
return;

save();
Expand Down

0 comments on commit 5452d36

Please sign in to comment.