Hello,
Not sure if this is a a bug or not. If you have the following in a function:
function test() {
if (live_call()) return live_result;
with(obj_A)
{
with(obj_B)
{
if place_meeting(x,y,other)
{show_message(x)}
}
}
}
You will get a message showing x as -1 instead of the actual value of x. If the live call is removed, it shows the actual value of x. If it is a bug, could it be addressed?
Thanks.