summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormekolat <mekolat@users.noreply.github.com>2016-02-09 21:01:53 -0500
committermekolat <mekolat@users.noreply.github.com>2016-02-09 21:01:53 -0500
commit7da0d5888e5910264e39d9f37e4910830a7718bc (patch)
tree51b05af456a99f6c9c4ec126d8c5a97acb4f114d
parent363bb322d0d924a68cfa5e726381c70a8ad31497 (diff)
downloadserverdata-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
-rw-r--r--world/map/npc/functions/headstyles.txt2
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