mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Fixed another case of wrong-placed strvalue as mentioned in #699.
This commit is contained in:
parent
c20a23a3d4
commit
58d380fe7d
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ class TypedObjectManager(idmapper.manager.SharedMemoryManager):
|
|||
if category:
|
||||
query.append(("db_attributes__db_category", category))
|
||||
if strvalue:
|
||||
query.append(("db_attributes__db_strvalue", value))
|
||||
query.append(("db_attributes__db_strvalue", strvalue))
|
||||
elif value:
|
||||
# strvalue and value are mutually exclusive
|
||||
query.append(("db_attributes__db_value", value))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue