1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-02-05 13:15:03 +02:00

Freeplay: fix character destructible

This commit is contained in:
Gerkiz 2024-11-10 12:53:01 +01:00
parent e29d2a4763
commit 51e332e5d6

View File

@ -158,7 +158,7 @@ local on_player_created = function (event)
util.remove_safe(player, this.crashed_debris_items)
player.get_main_inventory().sort_and_merge()
if player.character then
if player.character and not this.skip_intro then
player.character.destructible = false
end
@ -243,7 +243,7 @@ local on_cutscene_cancelled = function (event)
if player.gui.screen.skip_cutscene_label then
player.gui.screen.skip_cutscene_label.destroy()
end
if player.character then
if player.character and not this.skip_intro then
player.character.destructible = true
end
BottomFrame.toggle_player_frame(player, true)