MCPcopy Create free account
hub / github.com/demoth/jake2 / BitInfo

Method BitInfo

qcommon/src/main/java/jake2/qcommon/exec/Cvar.java:328–336  ·  view source on GitHub ↗
(int flags)

Source from the content-addressed store, hash-verified

326 }
327
328 private String BitInfo(int flags) {
329 String info = "";
330
331 for (cvar_t var : cvarMap.values()) {
332 if ((var.flags & flags) != 0)
333 info = Info.Info_SetValueForKey(info, var.name, var.string);
334 }
335 return info;
336 }
337
338 /**
339 * Returns an info string containing all the CVAR_SERVERINFO cvars.

Callers 2

ServerinfoMethod · 0.95
UserinfoMethod · 0.95

Calls 1

Info_SetValueForKeyMethod · 0.95

Tested by

no test coverage detected