mirror of
https://github.com/evennia/evennia.git
synced 2026-03-30 04:27:16 +02:00
Some minor tweaks to remove some debug logging.
This commit is contained in:
parent
81ce6a1827
commit
f1e156a299
2 changed files with 3 additions and 2 deletions
|
|
@ -25,7 +25,7 @@ class BodyFunctions(Script):
|
|||
self.interval = 20 # seconds
|
||||
#self.repeats = 5 # repeat only a certain number of times
|
||||
self.start_delay = True # wait self.interval until first call
|
||||
self.persistent = True
|
||||
#self.persistent = True
|
||||
|
||||
def at_repeat(self):
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
"""
|
||||
import sys
|
||||
|
||||
Building and world design commands
|
||||
|
||||
|
|
@ -2138,7 +2139,7 @@ class CmdTag(MuxCommand):
|
|||
if ":" in tag:
|
||||
tag, category = [part.strip() for part in tag.split(":", 1)]
|
||||
search_category = "object_%s" % category
|
||||
print "tag search:", tag, search_category
|
||||
#print "tag search:", tag, search_category
|
||||
objs = search.search_tag(tag, category=search_category)
|
||||
nobjs = len(objs)
|
||||
if nobjs > 0:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue