Puts all remaining commands from main buffer to deferredBuffer. Used to delay command execution before loading map (like map q2dm1; give all)
()
| 197 | * Used to delay command execution before loading map (like map q2dm1; give all) |
| 198 | */ |
| 199 | public static void CopyToDefer() { |
| 200 | deferredBuffer.addAll(buffer); |
| 201 | buffer.clear(); |
| 202 | } |
| 203 | |
| 204 | /** |
| 205 | * Puts all remaining commands from deferredBuffer to main Buffer. |
no test coverage detected