diff options
-rw-r--r-- | npc/craft/recipes.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index 05eea9e99..bef6d655e 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -354,7 +354,7 @@ function script MakeBlueprint { .@rcp=any_of(.@recipes); if (RECIPES_ALCHEMY[.@rcp]) { dispbottom l("It was a recipe you already knew..."); - getexp (BaseLevel+JobLevel)*rand(1,.@rarity), JobLevel+rand(1,.@rarity); + getexp (BaseLevel+JobLevel)*rand2(1,.@rarity), JobLevel+rand2(1,.@rarity); } else { dispbottom l("Learned a new recipe!"); RECIPES_ALCHEMY[.@rcp]=true; @@ -404,7 +404,7 @@ function script MakeBlueprint { .@rcp=any_of(.@recipes); if (RECIPES_EQUIPMENT[.@rcp]) { dispbottom l("It was a recipe you already knew..."); - getexp (BaseLevel+JobLevel)*rand(1,.@rarity), JobLevel+rand(1,.@rarity); + getexp (BaseLevel+JobLevel)*rand2(1,.@rarity), JobLevel+rand2(1,.@rarity); } else { dispbottom l("Learned a new recipe!"); RECIPES_EQUIPMENT[.@rcp]=true; |