• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

I have problem in compiling.

Megazort2

New Member
Joined
Sep 16, 2010
Messages
3
Reaction score
0
Hello!

I have problem in compiling TFS.

In protocolgame.cpp changed:
Code:
void ProtocolGame::sendMagicEffect(const Position& pos, uint8_t type)
on
Code:
void ProtocolGame::sendMagicEffect(const Position& pos, uint16_t type)

and in protocolgame.h changed
Code:
void sendMagicEffect(const Position& pos, uint8_t type)
on
Code:
void sendMagicEffect(const Position& pos, uint16_t type)

At the end of compilation is a error:
Code:
  [Linker error] undefined reference to `ProtocolGame::sendMagicEffect(Position const&, unsigned char)'

How I fix this error?
 
Back
Top