Bug fix: Nicks inside nicks are NOT to change moods of others ("ectoBio" and "ectoBiologist")
This commit is contained in:
parent
828a8c32d5
commit
44fa9cdc99
2 changed files with 2 additions and 1 deletions
|
@ -43,6 +43,7 @@ CHANGELOG
|
||||||
* Don't blow up if someone's not using Pesterchum in a memo - Kiooeht [evacipatedBox]
|
* Don't blow up if someone's not using Pesterchum in a memo - Kiooeht [evacipatedBox]
|
||||||
* Make 'logs' and 'profiles' directories if non-existant - Kiooeht [evacipatedBox]
|
* Make 'logs' and 'profiles' directories if non-existant - Kiooeht [evacipatedBox]
|
||||||
* Don't split messages in bad places - Kiooeht [evacipatedBox]
|
* Don't split messages in bad places - Kiooeht [evacipatedBox]
|
||||||
|
* Chumhandles must match EXACTLY to register mood changes - Kiooeht [evacipatedBox]
|
||||||
|
|
||||||
### 3.14.1
|
### 3.14.1
|
||||||
* Pesterchum 3.14 - illuminatedwax [ghostDunk]
|
* Pesterchum 3.14 - illuminatedwax [ghostDunk]
|
||||||
|
|
|
@ -795,7 +795,7 @@ class chumArea(RightClickTree):
|
||||||
#self.topLevelItem(0).sortChildren(0, QtCore.Qt.AscendingOrder)
|
#self.topLevelItem(0).sortChildren(0, QtCore.Qt.AscendingOrder)
|
||||||
|
|
||||||
def getChums(self, handle):
|
def getChums(self, handle):
|
||||||
chums = self.findItems(handle, QtCore.Qt.MatchContains | QtCore.Qt.MatchRecursive)
|
chums = self.findItems(handle, QtCore.Qt.MatchExactly | QtCore.Qt.MatchRecursive)
|
||||||
return chums
|
return chums
|
||||||
|
|
||||||
def showAllChums(self):
|
def showAllChums(self):
|
||||||
|
|
Loading…
Reference in a new issue