dashcode 1.0.1__tar.gz → 1.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dashcode
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: A library for Geometry Dash level generation using .gmd files
5
5
  Home-page: https://github.com/ISviterI/dashcode
6
6
  Author: IWiterI
@@ -13,4 +13,4 @@ Dashcode is a specialized Python library for the programmatic generation of Geom
13
13
  ## Installation
14
14
 
15
15
  ```bash
16
- pip install dashcode
16
+ pip install dashcode
@@ -50,6 +50,8 @@ class Dashcode:
50
50
  if self.params.get(param) is not None:
51
51
  pid = self.params[param]
52
52
  extraparams += f",{str(pid)},{value}"
53
+ else:
54
+ extraparams += f",{str(param)},{value}"
53
55
 
54
56
  oid = self.objects.get(obj, 1)
55
57
  if oid:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dashcode
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: A library for Geometry Dash level generation using .gmd files
5
5
  Home-page: https://github.com/ISviterI/dashcode
6
6
  Author: IWiterI
@@ -8,7 +8,7 @@ if os.path.exists("README.md"):
8
8
 
9
9
  setup(
10
10
  name="dashcode",
11
- version="1.0.1",
11
+ version="1.0.2",
12
12
  packages=find_packages(),
13
13
  author="IWiterI",
14
14
  description="A library for Geometry Dash level generation using .gmd files",
File without changes
File without changes