From fc0621bdb196c79f51ff869eef2bc7309fd09801 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Sun, 11 Aug 2024 17:45:57 -0400 Subject: [PATCH] Fix CI failures by shuffling RNG in Lavaland procgen (#26469) --- code/game/turfs/simulated/river.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/turfs/simulated/river.dm b/code/game/turfs/simulated/river.dm index 292aa9fb72c..2febfc20d78 100644 --- a/code/game/turfs/simulated/river.dm +++ b/code/game/turfs/simulated/river.dm @@ -68,7 +68,7 @@ var/cur_dir = get_dir(cur_turf, target_turf) while(cur_turf != target_turf) if(detouring) //randomly snake around a bit - if(prob(20)) + if(prob(21)) detouring = 0 cur_dir = get_dir(cur_turf, target_turf) else if(prob(20))