Skip to content

Commit

Permalink
Fix area list reloads crashing
Browse files Browse the repository at this point in the history
  • Loading branch information
Chrezm committed Aug 21, 2022
1 parent af2182e commit be9d14a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -793,3 +793,6 @@
* Fixed typo in area_templates.yaml field
* Fixed /think messages not showing the last sent sprite
* Fixed IC-via-OOC commands sending an empty position if the sender never spoke IC before sending the command

### 220821b (4.3.4-post1)
* Fixed area list reloads crashing
2 changes: 1 addition & 1 deletion server/client_changearea.py
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ def change_area(self, area: AreaManager.Area, override_all: bool = False,

client = self.client
old_area = client.area
found_something = False
found_something, ding_something = False, False

if not override_all:
# All the code that could raise errors goes here
Expand Down
4 changes: 2 additions & 2 deletions server/tsuserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ def __init__(self, protocol: AOProtocol = None,
self.release = 4
self.major_version = 3
self.minor_version = 4
self.segment_version = ''
self.internal_version = '220821a'
self.segment_version = 'post1'
self.internal_version = '220821b'
version_string = self.get_version_string()
self.software = 'TsuserverDR {}'.format(version_string)
self.version = 'TsuserverDR {} ({})'.format(version_string, self.internal_version)
Expand Down

0 comments on commit be9d14a

Please sign in to comment.