mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 20:47:10 +01:00
Removes code treating actions as a lazy list (#24971)
* this doesn't need to be lazy * fix some small things
This commit is contained in:
@@ -57,7 +57,7 @@
|
||||
row_offset = clamp(row_offset, 0, total_rows) // You're not allowed to offset so far that we have a row of blank space
|
||||
|
||||
var/button_number = 0
|
||||
for(var/atom/movable/screen/button as anything in actions)
|
||||
for(var/atom/movable/screen/button in actions)
|
||||
var/postion = ButtonNumberToScreenCoords(button_number)
|
||||
button.screen_loc = postion
|
||||
button_number++
|
||||
|
||||
Reference in New Issue
Block a user