Fix typo from ai revamp merge (#50)

* Fix function definition for Waypoints and silence unneeded developer print

* Revert "Fix function definition for Waypoints and silence unneeded developer print"

This reverts commit 4e13b00c33.

* Fix typo from ai revamp merge

* typo#2
This commit is contained in:
Tyler Young 2024-08-07 19:49:28 -04:00 committed by GitHub
parent e02867f3d9
commit 3d9454ec52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 14 deletions

View File

@ -2291,9 +2291,6 @@ unsigned short openset_waypoints[MAX_WAYPOINTS]; // List of waypoints currently
unsigned short openset_length; // Current length of the open set unsigned short openset_length; // Current length of the open set
zombie_ai zombie_list[MaxZombies]; zombie_ai zombie_list[MaxZombies];
//Debug//
void printSortedOpenSet()
{
// //
// Debugs prints the current sorted list of waypoints in the open set // Debugs prints the current sorted list of waypoints in the open set
// //
@ -2304,8 +2301,6 @@ void printSortedOpenSet()
} }
Con_Printf("\n"); Con_Printf("\n");
} }
}
//------//
// //
// Removes a waypoint from a set, if it belongs to it. // Removes a waypoint from a set, if it belongs to it.