It's a warning that your code is poorly written, and might bug. It happens when you try to destroy something that was already destroyed, which is a big no-no when it comes to structs, because they can get recycled after they're destroyed so destroying them again would actualy destroy the new struct that recycled the old one's ID. |