You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-- Lower wandering merchant encounter weights (relative to monster weight).
|
|
UPDATE runtime_config
|
|
SET
|
|
payload = payload || '{
|
|
"merchantEncounterWeightBase": 0.02,
|
|
"merchantEncounterWeightRoadBonus": 0.05
|
|
}'::jsonb,
|
|
updated_at = now()
|
|
WHERE id = TRUE;
|