]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix demo record marker
authorNikolay S <nick@teichisma.info>
Sat, 7 Sep 2024 18:16:48 +0000 (20:16 +0200)
committerNikolay S <nick@teichisma.info>
Sat, 7 Sep 2024 18:16:48 +0000 (20:16 +0200)
qcsrc/server/race.qc

index e882c9677ab8bafd8d3a1d01132684370b6d3faf..bc86c7f2601485b1c43acc092d1bd6d8eb066349 100644 (file)
@@ -70,11 +70,11 @@ void write_recordmarker(entity pl, float newpos, float tstart, float dt)
     // also write a marker into demo files for demotc-race-record-extractor to find
     if (pl.crypto_idfp != "") {
                stuffcmd(pl,
-                       sprintf("//%s RECORD SET %s %f %f %f %s\n", strconv(2, 0, 0, GetGametype()),
+                       sprintf("//%s RECORD SET %s %f %f %f %f %s\n", strconv(2, 0, 0, GetGametype()),
                                TIME_ENCODED_TOSTRING(TIME_ENCODE(dt), false), tstart, dt, newpos, pl.crypto_idfp));
        } else {
                stuffcmd(pl,
-                       sprintf("//%s RECORD SET %s %f %f %f ANONYMOUS\n", strconv(2, 0, 0, GetGametype()),
+                       sprintf("//%s RECORD SET %s %f %f %f %f ANONYMOUS\n", strconv(2, 0, 0, GetGametype()),
                                TIME_ENCODED_TOSTRING(TIME_ENCODE(dt), false), tstart, dt, newpos));
        }
 }