Skip to content

Commit d24cb4f

Browse files
Merge branch 'master' into public-release
2 parents 9e39943 + 00f417b commit d24cb4f

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

client/src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const CLIENT_VERSION = '1.4.2'
1+
export const CLIENT_VERSION = '1.4.3'
22
export const SPEC_VERSION = '1'
33
export const BATTLECODE_YEAR: number = 2025
44
export const MAP_SIZE_RANGE = {

client/src/playback/Bodies.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,7 @@ export const BODY_DEFINITIONS: Record<schema.RobotType, typeof Body> = {
574574

575575
public draw(match: Match, ctx: CanvasRenderingContext2D): void {
576576
super.draw(match, ctx)
577+
super.drawLevel(match, ctx)
577578
}
578579
},
579580

@@ -590,6 +591,7 @@ export const BODY_DEFINITIONS: Record<schema.RobotType, typeof Body> = {
590591

591592
public draw(match: Match, ctx: CanvasRenderingContext2D): void {
592593
super.draw(match, ctx)
594+
super.drawLevel(match, ctx)
593595
}
594596
},
595597

@@ -606,6 +608,7 @@ export const BODY_DEFINITIONS: Record<schema.RobotType, typeof Body> = {
606608

607609
public draw(match: Match, ctx: CanvasRenderingContext2D): void {
608610
super.draw(match, ctx)
611+
super.drawLevel(match, ctx)
609612
}
610613
},
611614

specs/specs.pdf

104 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)