Fix probability_damage

This commit is contained in:
Wuzzy 2017-05-13 22:06:02 +02:00
parent 0582481e96
commit 6104a2d40f
1 changed files with 1 additions and 1 deletions

View File

@ -547,7 +547,7 @@ local function place_corridors(main_cave_coords, psra)
-- Determine if this corridor system is “damaged” (some rails removed) and to which extent
local damage = 0
if pr:next() > probability_damage then
if pr:next() < probability_damage then
damage = pr:next(10, 50)
end
--[[ Starter cube: A big hollow dirt cube from which the corridors will extend.