Skip to content

Commit

Permalink
Increase object limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Matroftt authored Oct 19, 2024
1 parent 8689cd6 commit 183d3ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CorsixTH/Lua/dialogs/furnish_corridor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ function UIFurnishCorridor:purchaseItem(index, quantity)
quantity = quantity + o.qty
if quantity < o.min_qty then
quantity = o.min_qty
elseif quantity > 99 then
quantity = 99
elseif quantity > 100 then
quantity = 100
end
quantity = quantity - o.qty
local hospital = self.ui.hospital
Expand Down

0 comments on commit 183d3ed

Please sign in to comment.