ref previous commit

This commit is contained in:
Justin Parsell 2021-10-18 21:55:21 -04:00
parent 9d187ec8ed
commit 833d815fd2
1 changed files with 4 additions and 0 deletions

View File

@ -29,4 +29,8 @@ public enum GlowWireConnection implements StringIdentifiable{
public boolean isConnected() { public boolean isConnected() {
return this != NONE && this != BROKE; return this != NONE && this != BROKE;
} }
public boolean isConnectedUp(){
return this == UP;
}
} }