whitespace
sv_main.c:
	fix a silly mis-cast that caused the runes to not be displayed in the client
This commit is contained in:
Bill Currie 2001-07-09 03:17:53 +00:00
parent f6575ca262
commit c60d333610
2 changed files with 1 additions and 2 deletions

View file

@ -1,4 +1,3 @@
/*
sbar.c

View file

@ -650,7 +650,7 @@ SV_WriteClientdataToMessage (edict_t *ent, sizebuf_t *msg)
items = (int) SVFIELD (ent, items, float) | ((int) val->float_var << 23);
else
items =
(int) SVFIELD (ent, items, float) | ((int) sv_globals.serverflags << 28);
(int) SVFIELD (ent, items, float) | ((int) *sv_globals.serverflags << 28);
#endif
bits |= SU_ITEMS;