diff --git a/src/jugando.ts b/src/jugando.ts index b5f88dd..317d9e7 100644 --- a/src/jugando.ts +++ b/src/jugando.ts @@ -400,4 +400,13 @@ export function draw(juego: Juego, timestamp: number) { (juego.canvas.width - firmasBox.width - 20) * (juego.state.time / TIME), 30 ); + + if (detectCitizen(juego)) { + drawText( + juego, + `¡Apreta para recolectar firmas!`, + { x: juego.canvas.width / 2, y: juego.canvas.height * 0.7 }, + { align: "center", maxWidth: juego.canvas.width } + ); + } }