diff --git a/include/records.hrl b/include/records.hrl index 8730a13..824c06d 100644 --- a/include/records.hrl +++ b/include/records.hrl @@ -156,10 +156,6 @@ inventory=[] }). % also: shortcuts partnercards blacklist npcs flags... -%% @doc Table containing all mission objects. - --record(psu_object, {id, instancepid, type, args}). - %% @doc Hit response data. -record(hit_response, {type, user, exp, damage, targethp, targetse, events}). diff --git a/src/egs_app.erl b/src/egs_app.erl index 4e030c2..3bad358 100644 --- a/src/egs_app.erl +++ b/src/egs_app.erl @@ -69,7 +69,6 @@ db_init() -> mnesia:start(), mnesia:create_table(accounts, [{attributes, record_info(fields, accounts)}]), mnesia:create_table(counters, [{attributes, record_info(fields, counters)}]), - mnesia:create_table(psu_object, [{attributes, record_info(fields, psu_object)}]), mnesia:create_table(users, [{attributes, record_info(fields, users)}]), error_logger:info_report("mnesia tables created"), ok.