mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-05 18:17:22 +00:00
refactor: nuke all widestrings and widechars everywhere
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
|
||||
class Level;
|
||||
|
||||
RemotePlayer::RemotePlayer(Level* level, const std::wstring& name)
|
||||
RemotePlayer::RemotePlayer(Level* level, const std::string& name)
|
||||
: Player(level, name) {
|
||||
// 4J - added initialisers
|
||||
hasStartedUsingItem = false;
|
||||
@@ -22,7 +22,7 @@ RemotePlayer::RemotePlayer(Level* level, const std::wstring& name)
|
||||
lx = ly = lz = lyr = lxr = 0.0;
|
||||
fallTime = 0.0f;
|
||||
|
||||
Log::info("Created RemotePlayer with name %ls\n", name.c_str());
|
||||
Log::info("Created RemotePlayer with name %s\n", name.c_str());
|
||||
|
||||
heightOffset = 0;
|
||||
footSize = 0;
|
||||
|
||||
Reference in New Issue
Block a user