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

index bc86c7f2601485b1c43acc092d1bd6d8eb066349..bc74000e58087a99ad396077fc791e8e6fc2be65 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 %f %s\n", strconv(2, 0, 0, GetGametype()),
+                       sprintf("//%s RECORD SET %s %f %f %f %d %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 %f ANONYMOUS\n", strconv(2, 0, 0, GetGametype()),
+                       sprintf("//%s RECORD SET %s %f %f %f %d ANONYMOUS\n", strconv(2, 0, 0, GetGametype()),
                                TIME_ENCODED_TOSTRING(TIME_ENCODE(dt), false), tstart, dt, newpos));
        }
 }