From 80fb6573de64a45611169c9bb0faf961891ce3de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Fri, 9 Jul 2010 10:54:00 +0200 Subject: [PATCH] db: Remove an useless call. The server can now start without an fclean. --- src/egs_db.erl | 1 - 1 file changed, 1 deletion(-) diff --git a/src/egs_db.erl b/src/egs_db.erl index 4fbc565..e41bee0 100644 --- a/src/egs_db.erl +++ b/src/egs_db.erl @@ -37,7 +37,6 @@ create() -> mnesia:create_schema([node()]), mnesia:start(), mnesia:create_table(ids, [{attributes, record_info(fields, ids)}]), - mnesia:dirty_update_counter(ids, lobby, 0), mnesia:create_table(users, [{attributes, record_info(fields, users)}]). %% @doc Retrieve the next unique ID.