dev(points): Reverted old base value for points

This commit is contained in:
Theo Champion 2025-09-01 15:43:30 +02:00
parent 8ecc7d3849
commit b2ec8d079c

View file

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