crnw-dev / IslandArchitect

An plugin to create custom sky island generators for the SkyBlock plugin
Apache License 2.0
13 stars 4 forks source link

Simplify random generation regex on export #16

Closed Endermanbugzjfc closed 3 years ago

Endermanbugzjfc commented 3 years ago

For example:

{
  "1": 100,
  "2": 200
}

Would be simplified as:

{
  "1": 1,
  "2": 2
}
Endermanbugzjfc commented 3 years ago

c1985204