ID:2932286
 
Resolved
Chained assignments didn't work in local var declarations without surrounding them with parentheses, resulting in weird syntax errors.
BYOND Version:515
Operating System:Windows 11 Home
Web Browser:Chrome 125.0.0.0
Applies to:Dream Maker
Status: Resolved (515.1641)

This issue has been resolved.
Chaining assignments in var definitions without using parenthesis causes unrecognized token error.

var/list/l = my_list = list() // this generates error
var/list/l = (my_list = list()) // this does not
Lummox JR resolved issue with message:
Chained assignments didn't work in local var declarations without surrounding them with parentheses, resulting in weird syntax errors.