diff --git a/code/modules/vehicles/mecha/mecha_construction_paths.dm b/code/modules/vehicles/mecha/mecha_construction_paths.dm index d680dc6f6ae..631d61c7ba6 100644 --- a/code/modules/vehicles/mecha/mecha_construction_paths.dm +++ b/code/modules/vehicles/mecha/mecha_construction_paths.dm @@ -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"]))