mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2024-11-24 19:45:43 +01:00
Some more Checks
This commit is contained in:
parent
8baac3202c
commit
800e97adc1
@ -34,15 +34,23 @@ public class SIGNMob extends DSign {
|
||||
|
||||
@Override
|
||||
public boolean check() {
|
||||
// TODO Auto-generated method stub
|
||||
String lines[] = sign.getLines();
|
||||
if (!lines[1].equals("") && !lines[2].equals("")) {
|
||||
if (lines[1] != null) {
|
||||
String[] atributes = lines[2].split(",");
|
||||
if (atributes.length == 2) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onInit() {
|
||||
String lines[] = sign.getLines();
|
||||
if (lines[1] != "" && lines[2] != "") {
|
||||
if (!lines[1].equals("") && !lines[2].equals("")) {
|
||||
String mob = lines[1];
|
||||
if (mob != null) {
|
||||
String[] atributes = lines[2].split(",");
|
||||
|
@ -23,7 +23,9 @@ public class SIGNMsg extends DSign {
|
||||
|
||||
@Override
|
||||
public boolean check() {
|
||||
// TODO Auto-generated method stub
|
||||
if (sign.getLine(1).equals("")) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -32,7 +34,7 @@ public class SIGNMsg extends DSign {
|
||||
public void onInit() {
|
||||
String lines[] = sign.getLines();
|
||||
|
||||
if (lines[1] != "" && lines[2] != "") {
|
||||
if (!lines[1].equals("")) {
|
||||
String msg = gworld.config.getMsg(p.parseInt(lines[1]), true);
|
||||
if (msg != null) {
|
||||
this.msg = msg;
|
||||
|
@ -17,7 +17,9 @@ public class SIGNPlace extends DSign {
|
||||
|
||||
@Override
|
||||
public boolean check() {
|
||||
// TODO Auto-generated method stub
|
||||
if (sign.getLine(1).equals("")) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -28,7 +28,9 @@ public class SIGNSoundMsg extends DSign {
|
||||
|
||||
@Override
|
||||
public boolean check() {
|
||||
// TODO Auto-generated method stub
|
||||
if (sign.getLine(1).equals("")) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -37,7 +39,7 @@ public class SIGNSoundMsg extends DSign {
|
||||
public void onInit() {
|
||||
String lines[] = sign.getLines();
|
||||
|
||||
if (lines[1] != "" && lines[2] != "") {
|
||||
if (!lines[1].equals("")) {
|
||||
String msg = gworld.config.getMsg(p.parseInt(lines[1]), true);
|
||||
if (msg != null) {
|
||||
this.msg = msg;
|
||||
|
Loading…
Reference in New Issue
Block a user