Update CHANGELOG
This commit is contained in:
parent
395fcce079
commit
155965c4d1
2 changed files with 8 additions and 3 deletions
|
|
@ -177,6 +177,8 @@ Up requirements to Django 4.0+, Twisted 22+, Python 3.9 or 3.10
|
||||||
- New contrib `name_generator` for building random real-world based or fantasy-names
|
- New contrib `name_generator` for building random real-world based or fantasy-names
|
||||||
based on phonetic rules.
|
based on phonetic rules.
|
||||||
- Enable proper serialization of dict subclasses in Attributes (aogier)
|
- Enable proper serialization of dict subclasses in Attributes (aogier)
|
||||||
|
- `object.search` fuzzy-matching now uses `icontains` instead of `istartswith`
|
||||||
|
to better match how search works elsewhere (volund)
|
||||||
|
|
||||||
|
|
||||||
## Evennia 0.9.5
|
## Evennia 0.9.5
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,6 @@ from collections import defaultdict
|
||||||
import inflect
|
import inflect
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.utils.translation import gettext as _
|
from django.utils.translation import gettext as _
|
||||||
|
|
||||||
from evennia.commands import cmdset
|
from evennia.commands import cmdset
|
||||||
from evennia.commands.cmdsethandler import CmdSetHandler
|
from evennia.commands.cmdsethandler import CmdSetHandler
|
||||||
from evennia.objects.manager import ObjectManager
|
from evennia.objects.manager import ObjectManager
|
||||||
|
|
@ -1555,7 +1554,9 @@ class DefaultObject(ObjectDB, metaclass=TypeclassBase):
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
location.msg_contents((string, {"type": move_type}), exclude=(self,), from_obj=self, mapping=mapping)
|
location.msg_contents(
|
||||||
|
(string, {"type": move_type}), exclude=(self,), from_obj=self, mapping=mapping
|
||||||
|
)
|
||||||
|
|
||||||
def announce_move_to(self, source_location, msg=None, mapping=None, move_type="move", **kwargs):
|
def announce_move_to(self, source_location, msg=None, mapping=None, move_type="move", **kwargs):
|
||||||
"""
|
"""
|
||||||
|
|
@ -1623,7 +1624,9 @@ class DefaultObject(ObjectDB, metaclass=TypeclassBase):
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
destination.msg_contents((string, {"type": move_type}), exclude=(self,), from_obj=self, mapping=mapping)
|
destination.msg_contents(
|
||||||
|
(string, {"type": move_type}), exclude=(self,), from_obj=self, mapping=mapping
|
||||||
|
)
|
||||||
|
|
||||||
def at_post_move(self, source_location, move_type="move", **kwargs):
|
def at_post_move(self, source_location, move_type="move", **kwargs):
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue