diff --git a/src/LICENSE b/src/LICENSE index b71b600..95073df 100644 --- a/src/LICENSE +++ b/src/LICENSE @@ -1,21 +1,21 @@ -MIT License - -Copyright (c) 2018 secXsQuared - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +MIT License + +Copyright (c) 2018 secXsQuared + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/modinfo.lua b/src/modinfo.lua index fb65172..d189a7f 100644 --- a/src/modinfo.lua +++ b/src/modinfo.lua @@ -1,6 +1,6 @@ name = "World Regrowth++" -version = "0.2.3" -description = "Version "..version.."\nPlease reset the mod configuration after updating from 0.1.X to 0.2.0 and above\n\nWorld regrowth with caves support. Please see the Steam Workshop page for changes notes.\n\nHappy hunting and do starve!" +version = "1.0" +description = "Version "..version.."\n\nWorld regrowth with caves support. Please see the Steam Workshop page for changes notes.\n\nHappy hunting and do starve!" author = "lolo" forumthread = "" @@ -65,6 +65,7 @@ local config_table = {"stalagmite","Stalagmite",REGROWTH_TYPE.NATURAL, 1}, {"stalagmite_tall","Tall Stalagmite",REGROWTH_TYPE.NATURAL, 1}, + {"rabbithole","Rabbit Hole",REGROWTH_TYPE.EVENT, 2}, {"beehive","Beehive",REGROWTH_TYPE.EVENT, 4}, {"wasphive","Killer Bee Hive",REGROWTH_TYPE.EVENT, 6}, {"houndmound","Hound Mound",REGROWTH_TYPE.EVENT, 6}, @@ -114,7 +115,7 @@ for i = 1, #config_table do { name = config_table[i][1], label = config_table[i][2], - hover = config_table[i][3] == REGROWTH_TYPE.EVENT and "Event-based" or "Natural", + hover = config_table[i][3] == REGROWTH_TYPE.EVENT and "Event" or "Natural", options = opt, default = config_table[i][4] } diff --git a/src/modmain.lua b/src/modmain.lua index b50ea79..d4db156 100644 --- a/src/modmain.lua +++ b/src/modmain.lua @@ -51,6 +51,7 @@ local config_table = {"stalagmite","Stalagmite",REGROWTH_TYPE.NATURAL, 1}, {"stalagmite_tall","Tall Stalagmite",REGROWTH_TYPE.NATURAL, 1}, + {"rabbithole","Rabbit Hole",REGROWTH_TYPE.EVENT, 2}, {"beehive","Beehive",REGROWTH_TYPE.EVENT, 4}, {"wasphive","Killer Bee Hive",REGROWTH_TYPE.EVENT, 6}, {"houndmound","Hound Mound",REGROWTH_TYPE.EVENT, 6}, diff --git a/src/scripts/wrpp_util.lua b/src/scripts/wrpp_util.lua index 2602c42..c7d2b02 100644 --- a/src/scripts/wrpp_util.lua +++ b/src/scripts/wrpp_util.lua @@ -15,7 +15,9 @@ EXCLUDE_PREFABS = mermhead = 1, pighead = 1, pandoraschest = 1, - minotaurchest = 1 + minotaurchest = 1, + pighouse = 1, + rabbithouse = 1 } BASE_RADIUS = 20