1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-02-07 13:31:40 +02:00
This commit is contained in:
danielmartin0 2022-03-04 18:03:48 +00:00
parent 7a91abdb4c
commit d96b463066
2 changed files with 3 additions and 2 deletions

View File

@ -428,7 +428,8 @@ function Public.update(player)
flow.membership_buttons.spectator_join_crew.visible = playercrew_status.spectating and (not (count >= memory.capacity))
flow.membership_buttons.leave_crew.visible = playercrew_status.adventuring
flow.membership_buttons.crewmember_join_spectators.visible = playercrew_status.adventuring
-- flow.membership_buttons.crewmember_join_spectators.visible = playercrew_status.adventuring
flow.membership_buttons.crewmember_join_spectators.visible = false --disabled spectators for now... might not play well with maze world
flow.membership_buttons.leave_spectators.visible = playercrew_status.spectating
flow.membership_buttons.spectator_join_crew.visible = flow.membership_buttons.spectator_join_crew.visible and (not (memory.tempbanned_from_joining_data[player.index] and game.tick < memory.tempbanned_from_joining_data[player.index] + Common.ban_from_rejoining_crew_ticks))

View File

@ -59,7 +59,7 @@ Public.display_form = {
[enum.MASTER_ANGLER] = 'Master Angler',
[enum.WOOD_LORD] = 'Lord of the Woods',
[enum.CHIEF_EXCAVATOR] = 'Chief Excavator',
[enum.RONIN_SENSEI] = 'Ronin Sensei',
[enum.RONIN_SENSEI] = 'Ronin',
[enum.IRON_LEG] = 'Iron Leg',
[enum.QUARTERMASTER] = 'Quartermaster',
}