Skip to content

Commit

Permalink
Fixed bug in DeadZone Drifter stub
Browse files Browse the repository at this point in the history
  • Loading branch information
jwvhewitt committed Feb 11, 2024
1 parent 1f5293b commit f8ab591
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion game/content/ghplots/dd_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def t_UPDATE(self, camp):

def __setstate__(self, state):
# For saves from V0.930 or earlier, make sure there's memo state info.
self.__dict__.update(state)
super().__setstate__(state)
if "current_memo" not in state:
self.current_memo = 1
self.memo = self.MEMO_MESSAGES[0].format(**self.elements)
Expand Down
1 change: 1 addition & 0 deletions history.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
v0.960 February 11, 2024
* Fixed bug in DeadZone Drifter stub
* Certain weapons and mecha have been rebalanced; existing instances will be unaffected
* Weapon thrill power now _actually_ based on rank, ha ha ha
* Plots can contain extensions
Expand Down
2 changes: 1 addition & 1 deletion pbge/plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,11 +499,11 @@ def update(self, camp):

def __setstate__(self, state):
# For saves from V0.800 or earlier, make sure there's a _rumor_memo_delivered var.
self.__dict__.update(state)
if "_rumor_memo_delivered" not in state:
self._rumor_memo_delivered = False
if "extensions" not in state:
self.extensions = list()
self.__dict__.update(state)


class NarrativeRequest(object):
Expand Down

0 comments on commit f8ab591

Please sign in to comment.