Skip to content
This repository was archived by the owner on May 31, 2021. It is now read-only.

Updated Protocol version number #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ Class-Path: .
Created-By: 1.6.0_17 (Sun Microsystems Inc.)
Main-Class: org.digiplex.mcsod.MCSignOnDoor
Implementation-Vendor: Tustin2121
Specification-Version: 60
Specification-Version: 61

2 changes: 1 addition & 1 deletion src/org/digiplex/mcsod/MCSignOnDoor.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class MCSignOnDoor {

static { //static constructor
String protoversion = MCSignOnDoor.class.getPackage().getSpecificationVersion();
if (protoversion == null) protoversion = /****/ "60" /****/; //up to date protocol version - UPDATE MANIFEST TOO!
if (protoversion == null) protoversion = /****/ "61" /****/; //up to date protocol version - UPDATE MANIFEST TOO!
CURRENT_PROTOCOL_VERSION = Integer.parseInt(protoversion);
}

Expand Down