Skip to content

Commit

Permalink
Refactor some command classes into their own packages
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew121410 committed Jun 4, 2024
1 parent 1510cfc commit 2b67541
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
package com.andrew121410.mc.world16essentials;

import com.andrew121410.mc.world16essentials.commands.*;
import com.andrew121410.mc.world16essentials.commands.afk.AfkCMD;
import com.andrew121410.mc.world16essentials.commands.afk.IsAfkCMD;
import com.andrew121410.mc.world16essentials.commands.back.BackCMD;
import com.andrew121410.mc.world16essentials.commands.fly.FlyCMD;
import com.andrew121410.mc.world16essentials.commands.fly.FlySpeedCMD;
import com.andrew121410.mc.world16essentials.commands.hide.HideCMD;
import com.andrew121410.mc.world16essentials.commands.hide.UnhideCMD;
import com.andrew121410.mc.world16essentials.commands.home.*;
import com.andrew121410.mc.world16essentials.commands.kit.CreateKitCMD;
import com.andrew121410.mc.world16essentials.commands.kit.DelKitCMD;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.andrew121410.mc.world16essentials.commands;
package com.andrew121410.mc.world16essentials.commands.afk;

import com.andrew121410.mc.world16essentials.World16Essentials;
import com.andrew121410.mc.world16essentials.utils.API;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.andrew121410.mc.world16essentials.commands;
package com.andrew121410.mc.world16essentials.commands.afk;

import com.andrew121410.mc.world16essentials.World16Essentials;
import com.andrew121410.mc.world16essentials.utils.API;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.andrew121410.mc.world16essentials.commands;
package com.andrew121410.mc.world16essentials.commands.fly;

import com.andrew121410.mc.world16essentials.World16Essentials;
import com.andrew121410.mc.world16essentials.utils.API;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.andrew121410.mc.world16essentials.commands;
package com.andrew121410.mc.world16essentials.commands.fly;

import com.andrew121410.mc.world16essentials.World16Essentials;
import com.andrew121410.mc.world16essentials.utils.API;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.andrew121410.mc.world16essentials.commands;
package com.andrew121410.mc.world16essentials.commands.hide;

import com.andrew121410.mc.world16essentials.World16Essentials;
import com.andrew121410.mc.world16utils.chat.Translate;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.andrew121410.mc.world16essentials.commands;
package com.andrew121410.mc.world16essentials.commands.hide;

import com.andrew121410.mc.world16essentials.World16Essentials;
import com.andrew121410.mc.world16utils.chat.Translate;
Expand Down

0 comments on commit 2b67541

Please sign in to comment.