--- deliantra/server/ext/login.ext 2006/12/23 06:45:33 1.4 +++ deliantra/server/ext/login.ext 2006/12/26 05:44:13 1.7 @@ -252,16 +252,17 @@ $ob->contr->savebed ($bed->map->path, $bed->x, $bed->y); $ob->contr->killer ("left"); - $ob->check_score (); + $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); + } }); }, );