mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
fix: Reverted the not enough points message
This commit is contained in:
parent
3987a1dec1
commit
437b76a68c
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue