asamy / forgottenmapeditor

Map editor written in lua for Open Tibia. Written with OtClient's framework.
Other
46 stars 20 forks source link

10.10 support #8

Closed comedinha closed 11 years ago

comedinha commented 11 years ago

To fix 10.10 support you need add g_game.setProtocolVersion(tonumber(currentVersion.text)) on function loadDat(f) of filebrowser and on start up... g_game.setProtocolVersion(VERSION)

https://github.com/BrunoDCC/forgottenmapeditor/commit/7d1c82dd6904a947eb815a87d9ba89387105d8a2

asamy commented 11 years ago

Hi BrunoDCC,

I noticed you were trying to get the latest changes of my branch into yours, however, you did it wrong by just copying the changes manually, so it's better if you would use the git command:

git pull https://github.com/allanference/forgottenmapeditor.git --rebase

Also, I'd recommend reforking the project and adding your changes then making a pull request if you want to. Anyways, thank you for your contributions, I've fixed that in my last commit.

comedinha commented 11 years ago

Ty, i am a noob in github ._