From 437b76a68c3aab9e557902c58654222a0fcedb18 Mon Sep 17 00:00:00 2001 From: Theo Champion Date: Fri, 3 Oct 2025 19:15:10 +0200 Subject: [PATCH] fix: Reverted the not enough points message --- src/player/pay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/player/pay.c b/src/player/pay.c index 8858f5d..9436875 100644 --- a/src/player/pay.c +++ b/src/player/pay.c @@ -17,7 +17,7 @@ bool pay(t_cub3d_data *data, int amount, bool isdoor) { if (data->player.points < amount) { - ft_printf("Not enough points >:( 🖕\n"); + ft_printf("Not enough points :(\n"); return (false); } data->player.points -= amount;