0

Fixed type in Multiplexing Observer

This commit is contained in:
Andrew Chin
2012-06-10 20:39:42 -04:00
parent 03b10797c9
commit 1980c3aee1

View File

@@ -312,7 +312,7 @@ class MultiplexingObserver(Observer):
def update(self, current_value):
for o in self.components:
o.update(current_value)
super(MultiplexingObserver, self).update(max_value)
super(MultiplexingObserver, self).update(current_value)
class ServerAnnounceObserver(Observer):
"""Send the output to a Minecraft server via FIFO or stdin"""