diff --git a/pumpkin/src/command/commands/cmd_plugin.rs b/pumpkin/src/command/commands/cmd_plugin.rs index 40f1550a..8f980e4d 100644 --- a/pumpkin/src/command/commands/cmd_plugin.rs +++ b/pumpkin/src/command/commands/cmd_plugin.rs @@ -1,5 +1,5 @@ use async_trait::async_trait; -use pumpkin_core::{ +use pumpkin_util::{ text::{color::NamedColor, hover::HoverEvent, TextComponent}, PermissionLvl, }; diff --git a/pumpkin/src/command/commands/cmd_plugins.rs b/pumpkin/src/command/commands/cmd_plugins.rs index a066d9a1..b2d4a3fe 100644 --- a/pumpkin/src/command/commands/cmd_plugins.rs +++ b/pumpkin/src/command/commands/cmd_plugins.rs @@ -1,5 +1,5 @@ use async_trait::async_trait; -use pumpkin_core::text::{color::NamedColor, hover::HoverEvent, TextComponent}; +use pumpkin_util::text::{color::NamedColor, hover::HoverEvent, TextComponent}; use crate::{ command::{ diff --git a/pumpkin/src/lib.rs b/pumpkin/src/lib.rs index e43c54f7..719455c5 100644 --- a/pumpkin/src/lib.rs +++ b/pumpkin/src/lib.rs @@ -1,7 +1,7 @@ use std::sync::LazyLock; use plugin::PluginManager; -use pumpkin_core::text::TextComponent; +use pumpkin_util::text::TextComponent; use tokio::sync::Mutex; pub mod block; diff --git a/pumpkin/src/plugin/api/context.rs b/pumpkin/src/plugin/api/context.rs index 888bafa8..220a091c 100644 --- a/pumpkin/src/plugin/api/context.rs +++ b/pumpkin/src/plugin/api/context.rs @@ -1,6 +1,6 @@ use std::{fs, path::Path, sync::Arc}; -use pumpkin_core::PermissionLvl; +use pumpkin_util::PermissionLvl; use tokio::sync::RwLock; use crate::{ diff --git a/pumpkin/src/plugin/api/events/player/join.rs b/pumpkin/src/plugin/api/events/player/join.rs index 954d1582..39088b9c 100644 --- a/pumpkin/src/plugin/api/events/player/join.rs +++ b/pumpkin/src/plugin/api/events/player/join.rs @@ -1,6 +1,6 @@ use std::sync::Arc; -use pumpkin_core::text::TextComponent; +use pumpkin_util::text::TextComponent; use crate::{ entity::player::Player, diff --git a/pumpkin/src/plugin/api/events/player/leave.rs b/pumpkin/src/plugin/api/events/player/leave.rs index b595f4f3..1c2b8aed 100644 --- a/pumpkin/src/plugin/api/events/player/leave.rs +++ b/pumpkin/src/plugin/api/events/player/leave.rs @@ -1,6 +1,6 @@ use std::sync::Arc; -use pumpkin_core::text::TextComponent; +use pumpkin_util::text::TextComponent; use crate::{ entity::player::Player, diff --git a/pumpkin/src/plugin/api/events/player/mod.rs b/pumpkin/src/plugin/api/events/player/mod.rs index 6a134a57..b95508d3 100644 --- a/pumpkin/src/plugin/api/events/player/mod.rs +++ b/pumpkin/src/plugin/api/events/player/mod.rs @@ -1,4 +1,4 @@ -use pumpkin_core::text::TextComponent; +use pumpkin_util::text::TextComponent; use crate::entity::player::Player;