Fixes a bug

This commit is contained in:
Thomas Forgione 2019-04-02 22:06:54 +02:00
parent 0bc6dcdf02
commit dec099ad32
No known key found for this signature in database
GPG Key ID: BFD17A2D71B3B5E7
1 changed files with 5 additions and 4 deletions

View File

@ -336,8 +336,9 @@ impl Map {
self.collision_tiles[(i, j)] = tile; self.collision_tiles[(i, j)] = tile;
// Refresh the current graphic tile and their neighbours // Refresh the current graphic tile and their neighbours
for i in (i - 1) ..= (i + 1) { use std::cmp::max;
for j in (j - 1) ..= (j + 1) { for i in max(i, 1) - 1 ..= (i + 1) {
for j in max(j, 1) - 1 ..= (j + 1) {
let new_tile = self.graphic_tile(i, j); let new_tile = self.graphic_tile(i, j);
if let Some(tile) = self.graphic_tiles.get_mut(i, j) { if let Some(tile) = self.graphic_tiles.get_mut(i, j) {
*tile = new_tile; *tile = new_tile;