1
Fork 0
mirror of https://github.com/Steffo99/lihzahrd.git synced 2024-11-21 15:44:24 +00:00

PEP8 changes so PyCharm doesn't complain

This commit is contained in:
Steffo 2020-06-04 22:36:41 +02:00
parent 8fd6fa2665
commit a204c1efd9

View file

@ -560,7 +560,8 @@ class World:
new_bg_4 = f.int1()
new_bg_5 = f.int1()
backgrounds = Backgrounds(bg_underground_snow=bg_underground_snow,
backgrounds = Backgrounds(
bg_underground_snow=bg_underground_snow,
bg_underground_jungle=bg_underground_jungle,
bg_hell=bg_hell,
bg_forest=bg_forest,
@ -575,11 +576,13 @@ class World:
new_bg_2=new_bg_2,
new_bg_3=new_bg_3,
new_bg_4=new_bg_4,
new_bg_5=new_bg_5,)
new_bg_5=new_bg_5,
)
combat_book_used = f.bool()
saved_npcs = SavedNPCs(goblin_tinkerer=saved_goblin_tinkerer,
saved_npcs = SavedNPCs(
goblin_tinkerer=saved_goblin_tinkerer,
wizard=saved_wizard,
mechanic=saved_mechanic,
angler=saved_angler,
@ -587,7 +590,8 @@ class World:
tax_collector=saved_tax_collector,
bartender=saved_bartender,
golfer=saved_golfer,
advanced_combat=combat_book_used)
advanced_combat=combat_book_used
)
lantern_night = LanternEvent(f.int4(), f.bool(), f.bool(), f.bool())