From 838e7ad917785bb5dc53415cb32646833fbfd06d Mon Sep 17 00:00:00 2001 From: Jack Parmer Date: Wed, 19 Jun 2024 00:00:27 -0400 Subject: [PATCH] bug fix --- pyproject.toml | 2 +- src/voxel_world.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 96c3001..e680412 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = [ {name = "JP", email = "jack.parmer@pm.me"} ] description = "Delicious Voxel worlds in Python" -version = "0.0.4" +version = "0.0.5" readme = "README.md" requires-python = ">=3.7" dependencies = [ diff --git a/src/voxel_world.py b/src/voxel_world.py index b72a59b..9975285 100644 --- a/src/voxel_world.py +++ b/src/voxel_world.py @@ -72,7 +72,7 @@ def __init__(self, color_matrix=None, transparency_matrix=None, specularity_matrix=None, - singleton = False, + singleton = None, singleton_color = (180, 100, 100)): self.size = voxel_matrix.shape[0]