mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Fixed ancient construction datum runtime (#31009)
This commit is contained in:
@@ -404,7 +404,7 @@
|
||||
return S[Co_NEXTSTEP]
|
||||
|
||||
/datum/construction/reversible/proc/get_backward_step(index)
|
||||
if(index < 0 || index > steps.len)
|
||||
if(index < 1 || index > steps.len)
|
||||
return
|
||||
var/list/S = steps[index]
|
||||
if(Co_BACKSTEP in S)
|
||||
|
||||
Reference in New Issue
Block a user