mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-06 00:38:18 +00:00
Make constructors of blocks package-private.
This commit is contained in:
@@ -18,7 +18,7 @@ public final class ForceChatBlock extends SynchronizationBlock {
|
|||||||
*
|
*
|
||||||
* @param message The message.
|
* @param message The message.
|
||||||
*/
|
*/
|
||||||
public ForceChatBlock(String message) {
|
ForceChatBlock(String message) {
|
||||||
this.message = message;
|
this.message = message;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ public final class InteractingMobBlock extends SynchronizationBlock {
|
|||||||
*
|
*
|
||||||
* @param mobIndex The index of the current interacting mob.
|
* @param mobIndex The index of the current interacting mob.
|
||||||
*/
|
*/
|
||||||
public InteractingMobBlock(int mobIndex) {
|
InteractingMobBlock(int mobIndex) {
|
||||||
this.mobIndex = mobIndex;
|
this.mobIndex = mobIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ public final class TurnToPositionBlock extends SynchronizationBlock {
|
|||||||
*
|
*
|
||||||
* @param position The position to turn to.
|
* @param position The position to turn to.
|
||||||
*/
|
*/
|
||||||
public TurnToPositionBlock(Position position) {
|
TurnToPositionBlock(Position position) {
|
||||||
this.position = position;
|
this.position = position;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user