Update2.0 #22
@ -48,13 +48,10 @@ public class FilterScript implements RunnableScript {
|
|||||||
|
|
||||||
int blockZ = location.getBlockZ();
|
int blockZ = location.getBlockZ();
|
||||||
if (offset > 0) {
|
if (offset > 0) {
|
||||||
if (blockZ > bz - offset) return true;
|
return (blockZ > bz - offset) || (blockZ < rz + offset);
|
||||||
if (blockZ < rz + offset) return true;
|
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
if (blockZ < bz - offset) return true;
|
return (blockZ < bz - offset) || (blockZ > rz + offset);
|
||||||
if (blockZ > rz + offset) return true;
|
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
};
|
};
|
||||||
Chaoscaot
hat
Selbiges. Selbiges.
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren
If Else oder ||?