Title pretty much sums it up.
To recreate:
Put the following script in an object and attach it to your avatar (Note - Adapted from Ryozu Kojima)
default
{
touch_end(integer total_number)
{
llSetColor(<0, 1, 0>, ALL_SIDES);
llSetForce(<0,0,-2147483647>,FALSE);
llSetTimerEvent(10.0);
}
timer()
{
llSetForce(<0,0,0>,TRUE);
llSetColor(<1,0,0>,ALL_SIDES);
llSetTimerEvent(0.0);
}
}
Create a platform out of a box and raise it to 50m off the ground.
Fly up to and stand on the platform (may need a flight assist to fly that high)
Touch the box.
What should happen: You should immediately go through the platform and hit the ground
What actually happens: Nothing
Part 2:
Same as part one -but now walk around while the box is green
What happens: You may go to the ground, or you may not
What should happen: You should immediately go through the platform and hit the ground, everytime
Part 3:
Same as part one, except on the platform rez another box
After touching the attachment walk into the box
What Happens: You immediately go through the platform and hit the ground
This should happen without having to run into the box.
Also recreated at 100m and 500m
Thanks for reading/testing/voting,
-Sean