From 716b2ef1348d140ad73d9d678c2c8356f65bf2bf Mon Sep 17 00:00:00 2001 From: ai4rei Date: Tue, 17 May 2011 15:46:30 +0000 Subject: * Fixed Super Novices could not be adopted (bugreport:4907, since r12389). git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14828 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/pc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/map/pc.c b/src/map/pc.c index 976d1e488..b134c005f 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -695,7 +695,7 @@ bool pc_can_Adopt(struct map_session_data *p1_sd, struct map_session_data *p2_sd return false; } - if( !(b_sd->status.class_ >= JOB_NOVICE && b_sd->status.class_ <= JOB_THIEF) ) + if( !( ( b_sd->status.class_ >= JOB_NOVICE && b_sd->status.class_ <= JOB_THIEF ) || b_sd->status.class_ == JOB_SUPER_NOVICE ) ) return false; return true; -- cgit v1.2.3-70-g09d2