OpenFusion/src/Buddies.hpp
Gent Semaj 17362b2ea6
Client synchronization improvements (#283)
* Client synchronization improvements

* Remove bad comment

* Remove guard on PC_TICK

* Fix delayed loading of nano skill icons

We actually don't need to wait for post-load to do the second nano book send.
That adds unnecessary delay. Moving it to right after `P_FE2CL_REP_PC_ENTER_SUCC`
does the trick and gives the client plenty of time to fetch the icons before
loading in-game.

* Don't send unnecessary nano book subsets pre-enter

* Fix comment
2024-06-27 08:19:54 -05:00

11 lines
138 B
C++

#pragma once
#include "core/Core.hpp"
namespace Buddies {
void init();
// Buddy list
void sendBuddyList(CNSocket* sock);
}