diff options
Diffstat (limited to '')
-rw-r--r-- | src/ft_get_player_spawn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ft_get_player_spawn.c b/src/ft_get_player_spawn.c index fa99fdf..f5d2c87 100644 --- a/src/ft_get_player_spawn.c +++ b/src/ft_get_player_spawn.c @@ -82,8 +82,8 @@ void { if (ft_ischarset("NSEW", clist->mlist->map[y][x])) { - plist->pos_x = x; - plist->pos_y = y; + plist->pos_x = x + 0.5; + plist->pos_y = y + 0.5; ft_get_start_side(clist->mlist->map[y][x], clist->plist); return ; } |