Hello! I'm trying to use GMLive on a constructor with inheritance, and I keep getting "Expected a statement, got ident"
Here is some test code:
function TestBase(_x) constructor {
x = _x;
}
function TestDerived(_x, _y) : TestBase(_x) constructor {
if (live_call(_x, _y)) return live_result;
y = _y;
}
When trying to update anything in TestDerived, I get:
[ERROR] Error in TestDerived:
[ERROR] TestDerived [line 2, col 45]: Expected a statement, got ident
Not sure if I'm doing something wrong here, but please let me know if you can!