STANDARD/SERVER: Remove calls to strunzone on Remove_Waypoint

Causes issues removing waypoints on Standard platforms -- strings
weren't assigned IDs for the zone blocks, not in heap?
This commit is contained in:
cypress 2023-07-19 23:17:40 -04:00
parent b2bd148fdf
commit d4995b5b0c
1 changed files with 0 additions and 11 deletions

View File

@ -182,17 +182,6 @@ void() Remove_Waypoint =
bprint (PRINT_HIGH, active_way.waynum);
bprint (PRINT_HIGH, "\n");
strunzone (active_way.classname);
strunzone (active_way.targetname);
strunzone (active_way.waynum);
strunzone (active_way.target);
strunzone (active_way.target2);
strunzone (active_way.target3);
strunzone (active_way.target4);
strunzone (active_way.target5);
strunzone (active_way.target6);
strunzone (active_way.target7);
strunzone (active_way.target8);
remove (active_way);
}