diff options
author | Haru <haru@dotalux.com> | 2013-08-29 20:27:24 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-08-29 20:27:24 +0200 |
commit | 62563a47770f3a091e0cb661581389bf16324823 (patch) | |
tree | ba85a052a637303775cf8094f7b2f9f3d2e6a787 /npc | |
parent | c11390cbffc983b01ac9ee4af3b16ccb533dd94c (diff) | |
download | hercules-62563a47770f3a091e0cb661581389bf16324823.tar.gz hercules-62563a47770f3a091e0cb661581389bf16324823.tar.bz2 hercules-62563a47770f3a091e0cb661581389bf16324823.tar.xz hercules-62563a47770f3a091e0cb661581389bf16324823.zip |
Corrected an integer overflow in npc/custom/etc/marriage.txt
Thanks to Euphy for bringing this to my attention.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc')
-rw-r--r-- | npc/custom/etc/marriage.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/custom/etc/marriage.txt b/npc/custom/etc/marriage.txt index 00f44193a..fb6939a8c 100644 --- a/npc/custom/etc/marriage.txt +++ b/npc/custom/etc/marriage.txt @@ -719,7 +719,7 @@ function SF_TryRegister { close; } set Zeny,Zeny-@cost; - sc_start SC_Wedding,3600000000,1; //Start Wedding Effect (SC_WEDDING) + sc_start SC_Wedding,3600000,1; //Start Wedding Effect (SC_WEDDING) if (@bride) { set $wed_bride_progress,1; set $wed_bride$,strcharinfo(0); |