This commit is contained in:
Walter Julius Hennecke 2013-05-24 22:49:40 +02:00
parent e5064f3bfa
commit 9eb6c7c0d0
3 changed files with 2 additions and 3 deletions

View file

@ -1514,8 +1514,6 @@ static void G_SendHoloData(int clientNum) {
holoTent->nextthink = level.time + 2500;
}
extern mapChangeData_t mapChangeData;
//! Think function for temporal entity that transmits the server change data and map change data for transporter UI
void transTent_think(gentity_t *ent) {
char temp[MAX_STRING_CHARS];

View file

@ -1184,8 +1184,8 @@ static void G_LoadServerChangeFile(void) {
free(buffer);
}
static mapChangeData_t mapChangeData;
mapChangeData_t mapChangeData;
static void G_LoadMapChangeFile(void) {
char fileRoute[MAX_QPATH];
fileHandle_t f = 0;

View file

@ -6,5 +6,6 @@
extern int numKilled;
extern holoData_t holoData;
extern qboolean levelExiting;
extern mapChangeData_t mapChangeData;
#endif