Throw error if base mod is enabled

This commit is contained in:
David Skrundz 2023-08-25 16:19:03 -07:00
parent 072352dbd8
commit ab18838a55
Signed by: DavidSkrundz
GPG Key ID: D7006AAB6214A600
3 changed files with 10 additions and 1 deletions

View File

@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 1.2.0
Date: 25.08.2023
Features:
- Throw an error if the base mod is enabled
---------------------------------------------------------------------------------------------------
Version: 1.1.1
Date: 25.08.2023
Bugfixes:

View File

@ -1,3 +1,7 @@
if mods['base'] then
error("The base mod is enabled; Disable the base mod in order to use baseless")
end
require("Helpers.Append")
require("Helpers.Merge")

View File

@ -1,6 +1,6 @@
{
"name": "Baseless",
"version": "1.1.1",
"version": "1.2.0",
"title": "Baseless",
"description": "Defines missing prototypes required to launch the game.",
"author": "David Skrundz",