Imported from archive.
authorJeremy Stanley <fungi@yuggoth.org>
Tue, 31 Jan 2006 04:44:42 +0000 (04:44 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Tue, 31 Jan 2006 04:44:42 +0000 (04:44 +0000)
* mudpy.py (check_time): Removed unused function.

mudpy.py

index 5a1b4f7..3650f89 100644 (file)
--- a/mudpy.py
+++ b/mudpy.py
@@ -1144,14 +1144,6 @@ def escape_macros(text):
        """Escapes replacement macros in text."""
        return text.replace("$(", "$_(")
 
-def check_time(frequency):
-       """Check for a factor of the current increment count."""
-       if type(frequency) is str:
-               frequency = universe.categories["internal"]["time"].getint(frequency)
-       if not "counters" in universe.categories["internal"]:
-               Element("internal:counters", universe)
-       return not universe.categories["internal"]["counters"].getint("elapsed") % frequency
-
 def on_pulse():
        """The things which should happen on each pulse, aside from reloads."""
 
@@ -1168,7 +1160,7 @@ def on_pulse():
 
        # update the log every now and then
        if not universe.categories["internal"]["counters"].getint("mark"):
-               universe.save()
+               log(str(len(universe.userlist)) + " connection(s)")
                universe.categories["internal"]["counters"].set("mark", universe.categories["internal"]["time"].getint("frequency_log"))
        else: universe.categories["internal"]["counters"].set("mark", universe.categories["internal"]["counters"].getint("mark") - 1)