mirror of
https://github.com/Steffo99/lihzahrd.git
synced 2024-11-21 23:54:23 +00:00
PEP8 changes so PyCharm doesn't complain
This commit is contained in:
parent
8fd6fa2665
commit
a204c1efd9
1 changed files with 31 additions and 27 deletions
|
@ -560,7 +560,8 @@ class World:
|
||||||
new_bg_4 = f.int1()
|
new_bg_4 = f.int1()
|
||||||
new_bg_5 = 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_underground_jungle=bg_underground_jungle,
|
||||||
bg_hell=bg_hell,
|
bg_hell=bg_hell,
|
||||||
bg_forest=bg_forest,
|
bg_forest=bg_forest,
|
||||||
|
@ -575,11 +576,13 @@ class World:
|
||||||
new_bg_2=new_bg_2,
|
new_bg_2=new_bg_2,
|
||||||
new_bg_3=new_bg_3,
|
new_bg_3=new_bg_3,
|
||||||
new_bg_4=new_bg_4,
|
new_bg_4=new_bg_4,
|
||||||
new_bg_5=new_bg_5,)
|
new_bg_5=new_bg_5,
|
||||||
|
)
|
||||||
|
|
||||||
combat_book_used = f.bool()
|
combat_book_used = f.bool()
|
||||||
|
|
||||||
saved_npcs = SavedNPCs(goblin_tinkerer=saved_goblin_tinkerer,
|
saved_npcs = SavedNPCs(
|
||||||
|
goblin_tinkerer=saved_goblin_tinkerer,
|
||||||
wizard=saved_wizard,
|
wizard=saved_wizard,
|
||||||
mechanic=saved_mechanic,
|
mechanic=saved_mechanic,
|
||||||
angler=saved_angler,
|
angler=saved_angler,
|
||||||
|
@ -587,7 +590,8 @@ class World:
|
||||||
tax_collector=saved_tax_collector,
|
tax_collector=saved_tax_collector,
|
||||||
bartender=saved_bartender,
|
bartender=saved_bartender,
|
||||||
golfer=saved_golfer,
|
golfer=saved_golfer,
|
||||||
advanced_combat=combat_book_used)
|
advanced_combat=combat_book_used
|
||||||
|
)
|
||||||
|
|
||||||
lantern_night = LanternEvent(f.int4(), f.bool(), f.bool(), f.bool())
|
lantern_night = LanternEvent(f.int4(), f.bool(), f.bool(), f.bool())
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue