diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-18 23:20:08 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-18 23:20:08 +0000 |
| commit | 36f74586cc61f5899c16b6f84a04be37688cc719 (patch) | |
| tree | 3ce0df2cf2dc18b2bdd27b546305c4a73598c457 /sources/protocols/VSProtocol.java | |
| parent | 34b16d2ffc7b40df933ba85ddb8e414121116ca5 (diff) | |
TaskManager bugfixes.
Diffstat (limited to 'sources/protocols/VSProtocol.java')
| -rw-r--r-- | sources/protocols/VSProtocol.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sources/protocols/VSProtocol.java b/sources/protocols/VSProtocol.java index 6888d95..9ff1512 100644 --- a/sources/protocols/VSProtocol.java +++ b/sources/protocols/VSProtocol.java @@ -53,11 +53,13 @@ abstract public class VSProtocol extends VSEvent { public void reset() { if (isServer) { currentContextIsServer = true; + isServer = false; onServerReset(); } if (isClient) { currentContextIsServer = false; + isClient = false; onClientReset(); } } |
