summaryrefslogtreecommitdiff
path: root/npc/items/scissors.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-05-01 14:17:33 -0300
committerJesusaves <cpntb1@ymail.com>2021-05-01 14:17:33 -0300
commit69eb06640606e950bfe0d60b1be980aebca74e91 (patch)
tree0d2195ab68f53fd578023ca47d6f321f87b42264 /npc/items/scissors.txt
parent8475167670c2e58a8448184c9abbf21e2174d557 (diff)
downloadserverdata-69eb06640606e950bfe0d60b1be980aebca74e91.tar.gz
serverdata-69eb06640606e950bfe0d60b1be980aebca74e91.tar.bz2
serverdata-69eb06640606e950bfe0d60b1be980aebca74e91.tar.xz
serverdata-69eb06640606e950bfe0d60b1be980aebca74e91.zip
Fix some hairy issues ;-)
Diffstat (limited to 'npc/items/scissors.txt')
-rw-r--r--npc/items/scissors.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/items/scissors.txt b/npc/items/scissors.txt
index d27e8f6f..b21a36e8 100644
--- a/npc/items/scissors.txt
+++ b/npc/items/scissors.txt
@@ -3,11 +3,11 @@ function script useScissors {
if (rand(3))
goto L_Change;
message strcharinfo(0), "Whoops!";
- heal -20 - rand(Hp >> 1), 0;
+ heal -20 - rand(Hp >> 1), 0; // ???
return;
L_Change:
callfunc "getHeadStyles";
- setlook LOOK_HAIR_STYLE, rand(1,getarraysize(@HairStyles$));
+ setlook LOOK_HAIR_STYLE, rand(1,getarraysize($@hairstyle$)-1);
return;
}