--- deliantra/server/ext/login.ext 2006/12/23 07:28:02 1.5 +++ deliantra/server/ext/login.ext 2006/12/26 05:44:13 1.7 @@ -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; - } + if ($_[0] !~ /^[yY]/) { + $ob->contr->ns->destroy; + } else { + $ob->contr->enable_save (1); + } }); }, );