summaryrefslogtreecommitdiff
path: root/sources/protocols/VSProtocol.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/protocols/VSProtocol.java')
-rw-r--r--sources/protocols/VSProtocol.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/protocols/VSProtocol.java b/sources/protocols/VSProtocol.java
index 71b819f..6888d95 100644
--- a/sources/protocols/VSProtocol.java
+++ b/sources/protocols/VSProtocol.java
@@ -17,7 +17,7 @@ abstract public class VSProtocol extends VSEvent {
}
private final boolean isIncorrectProtocol(VSMessage message) {
- return !message.getClassname().equals(getClassname());
+ return !message.getProtocolClassname().equals(getClassname());
}
public final void onStart() {