mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-21 15:07:45 +00:00
Run Clippy auto-fix
This commit is contained in:
parent
51f6ad6744
commit
3bbf345cd6
3 changed files with 3 additions and 13 deletions
|
@ -1,5 +1,3 @@
|
|||
use std::io::Cursor;
|
||||
use std::path::PathBuf;
|
||||
use std::time::{SystemTime, UNIX_EPOCH};
|
||||
|
||||
use binrw::BinRead;
|
||||
|
@ -7,8 +5,8 @@ use kawari::ipc::{GameMasterCommandType, IPCOpCode, IPCSegment, IPCStructData};
|
|||
use kawari::oodle::FFXIVOodle;
|
||||
use kawari::packet::{PacketSegment, SegmentType, State, send_keep_alive};
|
||||
use kawari::world::{
|
||||
ActorControlSelf, ActorControlType, ChatHandler, InitZone, PlayerEntry, PlayerSetup,
|
||||
PlayerSpawn, PlayerStats, Position, SocialList, UpdateClassInfo, Zone, ZoneConnection,
|
||||
ActorControlSelf, ActorControlType, ChatHandler, PlayerEntry, PlayerSetup, PlayerSpawn,
|
||||
PlayerStats, Position, SocialList, Zone, ZoneConnection,
|
||||
};
|
||||
use kawari::{CHAR_NAME, CONTENT_ID, CUSTOMIZE_DATA, WORLD_ID, ZONE_ID, timestamp_secs};
|
||||
use tokio::io::AsyncReadExt;
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
use std::io::Cursor;
|
||||
|
||||
use binrw::BinRead;
|
||||
|
||||
use crate::{
|
||||
CHAR_NAME, CUSTOMIZE_DATA, WORLD_ID,
|
||||
ipc::{IPCOpCode, IPCSegment, IPCStructData},
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
use std::io::Cursor;
|
||||
|
||||
use binrw::BinRead;
|
||||
use tokio::net::TcpStream;
|
||||
|
||||
use crate::{
|
||||
WORLD_ID,
|
||||
common::timestamp_secs,
|
||||
ipc::{ActorSetPos, IPCOpCode, IPCSegment, IPCStructData},
|
||||
packet::{
|
||||
|
@ -139,6 +135,6 @@ impl ZoneConnection {
|
|||
|
||||
pub fn get_free_spawn_index(&mut self) -> u8 {
|
||||
self.spawn_index += 1;
|
||||
return self.spawn_index;
|
||||
self.spawn_index
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue