Skip to content

Commit

Permalink
fix: corrected n_cells in dungeon-resolving
Browse files Browse the repository at this point in the history
  • Loading branch information
LynnSchmittwilken committed May 15, 2023
1 parent 107edb4 commit cd0fc0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stimupy/stimuli/dungeons.py
Expand Up @@ -149,7 +149,7 @@ def resolve_dungeon_params(
"visual_size": visual_size,
"ppd": ppd,
"shape": shape,
"n_cells": (n_cells1 + 1, n_cells2 + 1),
"n_cells": (n_cells1 + 0.5, n_cells2 + 0.5),
"cell_size": (cell_size1 / 2, cell_size2 / 2),
}

Expand Down

0 comments on commit cd0fc0c

Please sign in to comment.