Skip to content

Commit a44a1bc

Browse files
authored
race: Fix error in base.lua (#614)
1 parent a7ae6f1 commit a44a1bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: [gamemodes]/[race]/race/modes/base.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,8 @@ function RaceMode:onPlayerReachCheckpoint(player, checkpointNum)
271271
end
272272
end
273273

274-
message = string.format("You finished %s %s.", rank, suffix)
275-
killmessage = string.format("%s finished %s %s.", rank, suffix)
274+
message = string.format("You finished %s%s.", rank, suffix)
275+
killmessage = string.format("%s finished %s%s.", name, rank, suffix)
276276
end
277277

278278
if rank == 1 then

0 commit comments

Comments
 (0)