mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 05:00:55 +01:00
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:
@@ -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"]))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user