Browse Source

do not allow quickload when talking to towner (#3479)

pull/3626/head
Thomas Christlieb 4 years ago committed by Anders Jenbo
parent
commit
b90f42c84f
  1. 2
      Source/diablo.cpp

2
Source/diablo.cpp

@ -1479,7 +1479,7 @@ void InitKeymapActions()
"QuickLoad",
DVL_VK_F3,
[] { gamemenu_load_game(false); },
[&]() { return !gbIsMultiplayer && gbValidSaveFile; },
[&]() { return !gbIsMultiplayer && gbValidSaveFile && stextflag == STORE_NONE; },
});
keymapper.AddAction({
"QuitGame",

Loading…
Cancel
Save