diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-02 22:33:31 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-02 22:33:31 -0300 |
commit | f3d9a42e2789f15a9940aaa7003bce113693b45f (patch) | |
tree | eb1042ac8060c4a93c063011275744c8a9ca104f /npc/012-1 | |
parent | 7d5524ad0a4ce304f0722c4976c2bc3404cc0455 (diff) | |
download | serverdata-f3d9a42e2789f15a9940aaa7003bce113693b45f.tar.gz serverdata-f3d9a42e2789f15a9940aaa7003bce113693b45f.tar.bz2 serverdata-f3d9a42e2789f15a9940aaa7003bce113693b45f.tar.xz serverdata-f3d9a42e2789f15a9940aaa7003bce113693b45f.zip |
Well, now it is pretty clear the bug
Diffstat (limited to 'npc/012-1')
-rw-r--r-- | npc/012-1/gwendolyn.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/012-1/gwendolyn.txt b/npc/012-1/gwendolyn.txt index 985eee760..e21064aee 100644 --- a/npc/012-1/gwendolyn.txt +++ b/npc/012-1/gwendolyn.txt @@ -353,8 +353,8 @@ L_Power: l("rather powerful shot"), l("very powerful shot"); - // we have 9 menu entries, so scale .@menu, which is in range 1-9, to a scale in -4 to +4 - .@sp = .@menu - 5; + // we have 9 menu entries, so scale @menu, which is in range 1-9, to a scale in -4 to +4 + .@sp = @menu - 5; // calculate where you hit. You range is in [-8, 8] in X and Y as well .@pointX = .@wdX + .@spX; .@pointY = .@wdY + .@sp; |