summaryrefslogtreecommitdiff
path: root/npc/craft/recipes.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-12-23 04:17:13 -0300
committerJesusaves <cpntb1@ymail.com>2021-12-23 04:17:13 -0300
commitc532251eeecf9323977a69d2d207dfdefed716e8 (patch)
treefce35b9e448daf98615ea0e7712b8e7248ef49ae /npc/craft/recipes.txt
parent24067d4f3c855778f5325687b906814eb4a043f6 (diff)
downloadserverdata-c532251eeecf9323977a69d2d207dfdefed716e8.tar.gz
serverdata-c532251eeecf9323977a69d2d207dfdefed716e8.tar.bz2
serverdata-c532251eeecf9323977a69d2d207dfdefed716e8.tar.xz
serverdata-c532251eeecf9323977a69d2d207dfdefed716e8.zip
Make obtaining master blueprints from ancient BPs harder
Diffstat (limited to 'npc/craft/recipes.txt')
-rw-r--r--npc/craft/recipes.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt
index aa5bd0665..f54209dc1 100644
--- a/npc/craft/recipes.txt
+++ b/npc/craft/recipes.txt
@@ -541,8 +541,10 @@ function script MakeRandomBlueprint {
if (BaseLevel > 100) {
array_push(.@blueprints, AlchemyBlueprintD);
array_push(.@blueprints, EquipmentBlueprintD);
- array_push(.@blueprints, AlchemyBlueprintE);
- array_push(.@blueprints, EquipmentBlueprintE);
+ if (any(true,false)) {
+ array_push(.@blueprints, AlchemyBlueprintE);
+ array_push(.@blueprints, EquipmentBlueprintE);
+ }
}
getitem any_of(.@blueprints), 1;
return;