From 25b8d7adb4e1135584d40e6d79e25539bb4981e7 Mon Sep 17 00:00:00 2001 From: ryo_saeba Date: Sun, 22 Apr 2012 14:10:25 +0000 Subject: [PATCH] Don't log the bell, it works. git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@18001 282e977c-c81d-0410-88c4-b93c2d0d6712 --- python/events/clock/bell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/events/clock/bell.py b/python/events/clock/bell.py index ae6e9b3f0..6717f30fd 100644 --- a/python/events/clock/bell.py +++ b/python/events/clock/bell.py @@ -50,10 +50,10 @@ hour = Crossfire.GetTime()[3] if not 'init' in dict.keys(): dict['init'] = 1 dict['last'] = hour - Crossfire.Log(Crossfire.LogDebug, "Bell init") + #Crossfire.Log(Crossfire.LogDebug, "Bell init") else: last = dict['last'] if (hour != last): dict['last'] = hour - Crossfire.Log(Crossfire.LogDebug, "Bell ringing") + #Crossfire.Log(Crossfire.LogDebug, "Bell ringing") ring_bell()