Browse Source

Slightly improved the message you get when trying to load a mob into the range reserved for player clones.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11589 54d463be-8e91-2dee-dedb-b68131a5f0ec
ultramage 17 years ago
parent
commit
ac7ffe49bb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/map/mob.c

+ 1 - 1
src/map/mob.c

@@ -3242,7 +3242,7 @@ static bool mob_parse_dbrow(char** str)
 	}
 	
 	if (class_ >= MOB_CLONE_START && class_ < MOB_CLONE_END) {
-		ShowWarning("Mob with ID: %d not loaded. That ID is reserved for player clones. Please increase MAX_MOB_DB (%d)\n", MAX_MOB_DB);
+		ShowWarning("Mob with ID: %d not loaded. Range %d-%d is reserved for player clones. Please increase MAX_MOB_DB (%d)\n", class_, MOB_CLONE_START, MOB_CLONE_END-1, MAX_MOB_DB);
 		return false;
 	}