Remove the unused #users.se.

This commit is contained in:
Loïc Hoguin 2011-02-27 19:49:27 +01:00
parent dc26bb82f7
commit c7cb5ab589
2 changed files with 1 additions and 2 deletions

View File

@ -62,7 +62,6 @@
currenthp = 100,
maxhp = 100,
stats = {stats, 1000, 2000, 3000, 4000, 5000, 6000, 7000},
se = [],
money = 1000000,
blastbar = 0,
luck = 3,

View File

@ -68,7 +68,7 @@ handle_call({create, NPCid, BaseLevel}, _From, State) ->
UCS2Name = << TmpUCS2Name/binary, 0:Padding >>,
User = #users{gid=NPCGID, slot=0, type=npc, npcid=NPCid, name=UCS2Name, race=Race, gender=Gender, class=Class, appearance=Appearance,
mainlevel={level, calc_level(BaseLevel, LevelDiff), 0}, blastbar=0, luck=2, money=0,
stats={stats, 0, 0, 0, 0, 0, 0, 0}, se=[], currenthp=100, maxhp=100,
stats={stats, 0, 0, 0, 0, 0, 0, 0}, currenthp=100, maxhp=100,
areatype=lobby, area={0, 0, 0}, entryid=0},
{reply, User, State};