Comparing version 5.3.3 to 5.3.4
{ | ||
"name": "demrec", | ||
"version": "5.3.3", | ||
"version": "5.3.4", | ||
"description": "Demo Recorder Renderer", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -211,3 +211,3 @@ let fs = require('fs') | ||
util.watch(ph.join(this.game.tmp, this.game.log), async log => { | ||
let map = log.data.match(/^(?:\d\d\/\d\d\/\d\d\d\d - \d\d:\d\d:\d\d: )?Missing map maps\/(.*?), {2}disconnecting\r\n$/) | ||
let map = log.data.match(/^(?:\d\d\/\d\d\/\d\d\d\d - \d\d:\d\d:\d\d: )?Missing map maps\/(.*?), {2}disconnecting\r\n/) | ||
if (map) { | ||
@@ -219,7 +219,7 @@ log.close() | ||
if (log.data.match(/^(?:\d\d\/\d\d\/\d\d\d\d - \d\d:\d\d:\d\d: )?Redownloading all lightmaps\r\n$/)) { | ||
if (log.data.match(/^(?:\d\d\/\d\d\/\d\d\d\d - \d\d:\d\d:\d\d: )?Redownloading all lightmaps\r\n/)) { | ||
this.emit('log', { event: DemRec.Events.DEMO_LAUNCH_END, demo: name }) | ||
} | ||
let end = log.data.match(/^(?:\d\d\/\d\d\/\d\d\d\d - \d\d:\d\d:\d\d: )?Ending movie after .*? seconds \(\d+ frames, .*? fps\)\r\n$/) | ||
let end = log.data.match(/^(?:\d\d\/\d\d\/\d\d\d\d - \d\d:\d\d:\d\d: )?Ending movie after .*? seconds \(\d+ frames, .*? fps\)\r\n/) | ||
if (end) { | ||
@@ -226,0 +226,0 @@ log.close() |
187422