From 57e4e91187c4e6d26ac9c161cc21b98f704c1c14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sun, 20 Feb 2011 01:15:05 +0100 Subject: [PATCH] Remove all references to the unused psu_object record/table. --- include/records.hrl | 4 ---- src/egs_app.erl | 1 - 2 files changed, 5 deletions(-) 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.