summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/script.c b/src/map/script.c
index 8f016a6f8..a949f8e96 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -10117,7 +10117,6 @@ BUILDIN_FUNC(homunculus_evolution)
BUILDIN_FUNC(homunculus_mutate)
{
int homun_id, m_class, m_id;
- int homun_array[5] = {6048,6049,6050,6051,6052};
TBL_PC *sd;
sd = script_rid2sd(st);
@@ -10127,7 +10126,7 @@ BUILDIN_FUNC(homunculus_mutate)
if(script_hasdata(st,2))
homun_id = script_getnum(st,2);
else
- homun_id = homun_array[rnd() % 5];
+ homun_id = 6048 + (rnd() % 4);
if(merc_is_hom_active(sd->hd)) {
m_class = hom_class2mapid(sd->hd->homunculus.class_);