Fixed ancient construction datum runtime (#31009)

This commit is contained in:
DamianX
2021-10-08 19:35:46 +02:00
committed by GitHub
parent 8cf4ffd9b5
commit a19fc204de

View File

@@ -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)