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.
autohero/backend/migrations/000036_runtime_config_merch...

10 lines
279 B
SQL

-- 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;