summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
authorLance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-23 08:22:53 +0000
committerLance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-23 08:22:53 +0000
commitefac9030a63b8353237cb26cf6cc1ac272288f1e (patch)
tree31dfb7f97a1ed83a11b8c93c552d70f270ef8e02 /src/map/script.c
parent3d265a82001fb2527e8beaf04820f896cb5fb3d0 (diff)
downloadhercules-efac9030a63b8353237cb26cf6cc1ac272288f1e.tar.gz
hercules-efac9030a63b8353237cb26cf6cc1ac272288f1e.tar.bz2
hercules-efac9030a63b8353237cb26cf6cc1ac272288f1e.tar.xz
hercules-efac9030a63b8353237cb26cf6cc1ac272288f1e.zip
* [Scripting Engine Update] New variables are ready to be used.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6703 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script.c b/src/map/script.c
index 8809c9f91..f45e722fc 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -1043,11 +1043,11 @@ static unsigned char *skip_space(unsigned char *p)
static unsigned char *skip_word(unsigned char *p)
{
// prefix
+ if(*p=='\'') p++;
if(*p=='$') p++; // MAP鯖内共有変数用
if(*p=='@') p++; // 一時的変数用(like weiss)
if(*p=='#') p++; // account変数用
if(*p=='#') p++; // ワールドaccount変数用
- if(*p=='\'') p++;
while(isalnum(*p)||*p=='_'|| *p>=0x81)
if(*p>=0x81 && p[1]){