diff options
author | Vicious <Vicious@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-02 20:30:54 +0000 |
---|---|---|
committer | Vicious <Vicious@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-02 20:30:54 +0000 |
commit | 355a5cb3f4083583274b101dbe52adc11ba64177 (patch) | |
tree | bea085c537b99df304f7fdccd3a8437c97f7e1a6 /npc | |
parent | a3f7894c89f68339a258eac9f77b187f4d19f046 (diff) | |
download | hercules-355a5cb3f4083583274b101dbe52adc11ba64177.tar.gz hercules-355a5cb3f4083583274b101dbe52adc11ba64177.tar.bz2 hercules-355a5cb3f4083583274b101dbe52adc11ba64177.tar.xz hercules-355a5cb3f4083583274b101dbe52adc11ba64177.zip |
fixed baby jobchange
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5879 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 1 | ||||
-rw-r--r-- | npc/other/Global_Functions.txt | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 3c093765e..00214ad1c 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -28,6 +28,7 @@ Nexon Date Added
======
04/02
+ * Fixed baby job change, thanks to Larry [Vicious]
* Moved the spawn update to eamobs (of course the custom spawns where not changed... much :P) [Poki#3]
* Fixed sage script? [Vicious]
* Fixed more of wrong female thief bug spawn [Vicious]
diff --git a/npc/other/Global_Functions.txt b/npc/other/Global_Functions.txt index 00c0507f8..c55a3205d 100644 --- a/npc/other/Global_Functions.txt +++ b/npc/other/Global_Functions.txt @@ -64,7 +64,7 @@ function script F_ClearJobVar { function script Job_Change {
if (Upper==0) jobchange getarg(0); //Change Job For Common
- if (Upper==2) jobchange getarg(0)+46; //Change Job For Baby Class
+ if (Upper==2) jobchange getarg(0) + Job_Baby; //Change Job For Baby Class
return;
}
|