diff options
author | mekolat <mekolat@users.noreply.github.com> | 2016-02-09 21:01:53 -0500 |
---|---|---|
committer | mekolat <mekolat@users.noreply.github.com> | 2016-02-09 21:01:53 -0500 |
commit | 7da0d5888e5910264e39d9f37e4910830a7718bc (patch) | |
tree | 51b05af456a99f6c9c4ec126d8c5a97acb4f114d /world/map/npc | |
parent | 363bb322d0d924a68cfa5e726381c70a8ad31497 (diff) | |
download | serverdata-7da0d5888e5910264e39d9f37e4910830a7718bc.tar.gz serverdata-7da0d5888e5910264e39d9f37e4910830a7718bc.tar.bz2 serverdata-7da0d5888e5910264e39d9f37e4910830a7718bc.tar.xz serverdata-7da0d5888e5910264e39d9f37e4910830a7718bc.zip |
do not give a free stat reset to pre-tutorial players
Diffstat (limited to 'world/map/npc')
-rw-r--r-- | world/map/npc/functions/headstyles.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/world/map/npc/functions/headstyles.txt b/world/map/npc/functions/headstyles.txt index 1098c80c..2ddaa4a6 100644 --- a/world/map/npc/functions/headstyles.txt +++ b/world/map/npc/functions/headstyles.txt @@ -4,7 +4,7 @@ function|script|fixHeadStyles { callfunc "getHeadStyles"; - if ((TUT_var < 1 || QL_BEGIN < 1) && StatusPoint < 1) + if ((TUT_var < 1 || QL_BEGIN < 1) && StatusPoint < 1 && BaseLevel == 1) goto L_RandomHair; // on first login set @style, getlook(LOOK_HAIR_STYLE); // FIXME: this needs to be a param in the future set @color, getlook(LOOK_HAIR_COLOR); // FIXME: this needs to be a param in the future |