summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/Changelog.txt1
-rw-r--r--npc/other/Global_Functions.txt2
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;
}