diff options
author | lemongrass3110 <lemongrass3110@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2013-03-31 13:00:28 +0000 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-04-11 16:34:44 -0300 |
commit | 727e790733ea6a753765a271b51a91a31e1fb110 (patch) | |
tree | c8237ce66479f7d4e6d8a031a862f457db626afc /src | |
parent | 3185ca423f28c25ca10210631a3474dc599c84a0 (diff) | |
download | hercules-727e790733ea6a753765a271b51a91a31e1fb110.tar.gz hercules-727e790733ea6a753765a271b51a91a31e1fb110.tar.bz2 hercules-727e790733ea6a753765a271b51a91a31e1fb110.tar.xz hercules-727e790733ea6a753765a271b51a91a31e1fb110.zip |
Fixed warpportal script. bugreport:7451
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@17226 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/map/script.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/script.c b/src/map/script.c index 182b04f86..c65ce5c24 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -15662,6 +15662,7 @@ BUILDIN_FUNC(warpportal) group = skill->unitsetting(bl, AL_WARP, 4, spx, spy, 0); if( group == NULL ) return 0;// failed + group->val1 = (group->val1<<16)|(short)0; group->val2 = (tpx<<16) | tpy; group->val3 = mapindex; |