Corrected a map server notification

* Corrected the removed maps notification not displaying properly.
This commit is contained in:
aleos
2018-08-27 18:22:23 -04:00
parent bde33e762c
commit e469f5fb62

View File

@@ -3777,10 +3777,10 @@ int map_readallmaps (void)
}
if (maps_removed)
ShowNotice("Maps removed: '" CL_WHITE "%d" CL_RESET "'\n", maps_removed);
ShowNotice("Maps removed: '" CL_WHITE "%d" CL_RESET "'" CL_CLL ".\n", maps_removed);
// finished map loading
ShowInfo("Successfully loaded '" CL_WHITE "%d" CL_RESET "' maps." CL_CLL "\n",map_num);
ShowInfo("Successfully loaded '" CL_WHITE "%d" CL_RESET "' maps.\n",map_num);
return 0;
}