From 29799094eaea92d9bee0676e2a07bf74a63fb7ca Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Thu, 28 Dec 2023 19:34:24 +0100 Subject: [PATCH] Adjust world weights. --- Glamourer/State/WorldSets.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Glamourer/State/WorldSets.cs b/Glamourer/State/WorldSets.cs index 4464aee..4590eec 100644 --- a/Glamourer/State/WorldSets.cs +++ b/Glamourer/State/WorldSets.cs @@ -302,12 +302,12 @@ public class WorldSets private (FunEquipSet.Group, CharacterWeapon, CharacterWeapon)? GetGroup(byte level, byte job, Race race, Gender gender, Random rng) { - const int weight50 = 1200; - const int weight60 = 1500; - const int weight70 = 1700; - const int weight80 = 1800; - const int weight90 = 1900; - const int weight100 = 2000; + const int weight50 = 200; + const int weight60 = 500; + const int weight70 = 700; + const int weight80 = 800; + const int weight90 = 900; + const int weight100 = 1000; if (job >= StarterWeapons.Length) return null;