Updated the min protocol version so people don't get warnings every time they join servers.

Dieser Commit ist enthalten in:
zml2008 2011-12-27 14:23:16 -08:00
Ursprung 70207f1370
Commit 0960ce46e2

Datei anzeigen

@ -22,7 +22,7 @@ package com.sk89q.worldedit.cui;
public interface CUIEvent {
// The required protocol versions for communicating with the CUI
public static final int MIN_PROTOCOL = 0, CURRENT_PROTOCOL = 0;
public static final int MIN_PROTOCOL = -1, CURRENT_PROTOCOL = 0; // TODO: Yetanotherx releases a new WECUI with protocol version 0.
public String getTypeId();