Fix mech construction (#94281)

## About The Pull Request

Fixes #94280

Last minute changes always bite  

## Changelog

🆑 Melbert
fix: Fix mech construction 
/🆑
This commit is contained in:
MrMelbert
2025-12-03 17:39:07 -07:00
committed by GitHub
parent 271430b844
commit 259ff2c889
@@ -341,7 +341,7 @@
if(diff == FORWARD && steps[index]["forward_message"])
user.balloon_alert_to_viewers(steps[index]["forward_message"])
var/list/next_step = index + 1 == steps.len ? null : steps[index + 1]
var/list/next_step = index == steps.len ? null : steps[index + 1]
if(next_step?["desc"])
to_chat(user, span_smallnoticeital(next_step["desc"]))