The addedToWorld method is only executed once when the actor is added to the world.
If you only want it to happen in the RWorld world, then you can have a condition in the act method.
public void act()
{
if (getWorld() instanceof RWorld)
{
//...
}
else
{
//...
}
}

