--- deliantra/server/ext/login.ext 2006/12/23 07:28:02 1.5 +++ deliantra/server/ext/login.ext 2006/12/26 04:46:06 1.6 @@ -255,13 +255,14 @@ $ob->check_score; $ob->reply (undef, "In the future, you will wake up here when you die."); - $ob->contr->save; + $ob->contr->save (1); $ob->contr->ns->query (cf::CS_QUERY_SINGLECHAR, "Do you want to continue playing (y/n)?", sub { - if ($_[0] !~ /^[yY]/) { - $ob->contr->save (1); - $ob->contr->ns->destroy; - } + $ob->contr->enable_save (1); + if ($_[0] !~ /^[yY]/) { + $ob->contr->save (1); + $ob->contr->ns->destroy; + } }); }, );