Alien Biomes: Add warning

This commit is contained in:
Simon Brodtmann 2025-03-04 23:50:10 +01:00
parent c334459db2
commit 1115f8ad37

View file

@ -80,6 +80,12 @@ Init.events[defines.events.on_player_created] = function(event)
if storage.init[event.player_index] then return end if storage.init[event.player_index] then return end
storage.init[event.player_index] = true storage.init[event.player_index] = true
if script.active_mods["alien-biomes"] then
local message = "While Alien Biomes is playable with Lignumis, it is not recommended as it prevents trees from being generated on Lignumis."
game.print(message)
end
init_player(event) init_player(event)
init_freeplay(event) init_freeplay(event)
end end