moved to timer based poll mechanism
[god.git] / lib / god / conditions / always.rb
blob5a4763d162b15047e9f897778198dbe580b00eb6
1 module God
2   module Conditions
4     class Always < PollCondition
5       def test
6         false
7       end
8     end
9   
10   end
11 end