Puts all remaining commands from deferredBuffer to main Buffer. Used to delay command execution before loading map (like map q2dm1; give all)
()
| 206 | * Used to delay command execution before loading map (like map q2dm1; give all) |
| 207 | */ |
| 208 | public static void InsertFromDefer() { |
| 209 | buffer.addAll(deferredBuffer); |
| 210 | deferredBuffer.clear(); |
| 211 | } |
| 212 | |
| 213 | public static void reconfigure(List<String> args, boolean clear) { |
| 214 | String dir = Cvar.getInstance().Get("cddir", "", CVAR_ARCHIVE).string; |