aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/plugins/chat_signing.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-09-29 02:01:50 +0700
committermat <git@matdoes.dev>2025-09-29 02:01:50 +0700
commita80d8d1b242430c4a251876fa67bfd26af7a0de9 (patch)
treee683100c2f68fed0729dbaa12e7ef189189350be /azalea-client/src/plugins/chat_signing.rs
parent2c8b7c5c2c9297273abfba8f7743f1bc25f166b1 (diff)
downloadazalea-drasl-a80d8d1b242430c4a251876fa67bfd26af7a0de9.tar.xz
rename SendPacketEvent to SendGamePacketEvent and PingEvent to GamePingEvent
Diffstat (limited to 'azalea-client/src/plugins/chat_signing.rs')
-rw-r--r--azalea-client/src/plugins/chat_signing.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-client/src/plugins/chat_signing.rs b/azalea-client/src/plugins/chat_signing.rs
index 8961430e..5c805f01 100644
--- a/azalea-client/src/plugins/chat_signing.rs
+++ b/azalea-client/src/plugins/chat_signing.rs
@@ -12,7 +12,7 @@ use chrono::Utc;
use tracing::{debug, error};
use uuid::Uuid;
-use super::{chat, login::IsAuthenticated, packet::game::SendPacketEvent};
+use super::{chat, login::IsAuthenticated, packet::game::SendGamePacketEvent};
use crate::{Account, InGameState};
pub struct ChatSigningPlugin;
@@ -169,7 +169,7 @@ pub fn handle_queued_certs_to_send(
debug!("Sending chat signing certs to server");
- commands.trigger(SendPacketEvent::new(
+ commands.trigger(SendGamePacketEvent::new(
entity,
ServerboundChatSessionUpdate { chat_session },
));