mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
dev(points): Reverted old base value for points
This commit is contained in:
parent
8ecc7d3849
commit
b2ec8d079c
1 changed files with 2 additions and 2 deletions
|
|
@ -6,7 +6,7 @@
|
|||
/* By: kcolin <kcolin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/08/06 11:29:14 by kcolin #+# #+# */
|
||||
/* Updated: 2025/08/20 17:06:00 by tchampio ### ########.fr */
|
||||
/* Updated: 2025/09/01 15:36:43 by tchampio ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -60,7 +60,7 @@ void init_player(t_player *player, t_mapdata *map)
|
|||
player->x = map->startx + 0.5;
|
||||
player->y = map->starty + 0.5;
|
||||
player->health = 100;
|
||||
player->points = 1234567890;
|
||||
player->points = 500;
|
||||
if (dir == 'N' || dir == 'S')
|
||||
init_lon(player, dir);
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue