mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 08:39:11 +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.
|
||||
*/
|
||||
public ForceChatBlock(String message) {
|
||||
ForceChatBlock(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ public final class InteractingMobBlock extends SynchronizationBlock {
|
||||
*
|
||||
* @param mobIndex The index of the current interacting mob.
|
||||
*/
|
||||
public InteractingMobBlock(int mobIndex) {
|
||||
InteractingMobBlock(int mobIndex) {
|
||||
this.mobIndex = mobIndex;
|
||||
}
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ public final class TurnToPositionBlock extends SynchronizationBlock {
|
||||
*
|
||||
* @param position The position to turn to.
|
||||
*/
|
||||
public TurnToPositionBlock(Position position) {
|
||||
TurnToPositionBlock(Position position) {
|
||||
this.position = position;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user