fix: Reverted the not enough points message

This commit is contained in:
Theo Champion 2025-10-03 19:15:10 +02:00
parent 3987a1dec1
commit 437b76a68c

View file

@ -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;