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:
Luc
2024-04-03 14:08:26 +00:00
committed by GitHub
parent 629522d2c7
commit 655d170ae2
3 changed files with 6 additions and 11 deletions
+1 -1
View File
@@ -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++