Bug fix: Still accept messages in memos from non-Pesterchum users

This commit is contained in:
Kiooeht 2011-05-09 23:51:53 -07:00
parent 5400112c85
commit 8af1b3873f
2 changed files with 4 additions and 0 deletions

View file

@ -23,6 +23,7 @@ CHANGELOG
* Rearrange options menu, make tabbed - Kiooeht [evacipatedBox]
* Rearrange memos window for readability - Kiooeht [evacipatedBox]
* Give voice to memo users - Kiooeht [evacipatedBox]
* Theme checking - Kiooeht [evacipatedBox]
* Bug fixes
* Logviewer updates - Kiooeht [evacipatedBox]
* Memo scrollbar thing - Kiooeht [evacipatedBox]
@ -31,6 +32,7 @@ CHANGELOG
* Stay in memos on profile switch - Kiooeht [evacipatedBox]
* Auto rejoin memos on reconnect - Kiooeht [evacipatedBox]
* De-Op in memos correctly - Kiooeht [evacipatedBox]
* Don't blow up if someone's not using Pesterchum in a memo - Kiooeht [evacipatedBox]
### 3.14.1
* Pesterchum 3.14 - illuminatedwax [ghostDunk]

View file

@ -163,6 +163,8 @@ class TimeTracker(list):
timed = self.getTime()
return self.getGrammarTime(timed)
def getGrammarTime(self, timed):
if not timed:
timed = timedelta(0)
mytime = timedelta(0)
(temporal, pcf, when) = pcfGrammar(timed - mytime)
if timed == mytime: