~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/net/ea/beinghandler.cpp

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-09-17 10:35:51 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20130917103551-az7p3nz9jgxwqjfn
Tags: 1.3.9.15-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
#include "actorspritemanager.h"
28
28
#include "client.h"
 
29
#include "configuration.h"
29
30
#include "effectmanager.h"
30
31
#include "game.h"
31
32
#include "guild.h"
32
33
#include "guildmanager.h"
33
 
#include "inputmanager.h"
34
 
#include "keyboardconfig.h"
35
 
#include "localplayer.h"
36
 
#include "particle.h"
37
34
#include "party.h"
38
 
#include "playerrelations.h"
39
 
#include "configuration.h"
 
35
 
 
36
#include "being/localplayer.h"
 
37
#include "being/playerrelations.h"
 
38
 
 
39
#include "particle/particle.h"
 
40
 
 
41
#include "input/inputmanager.h"
 
42
#include "input/keyboardconfig.h"
40
43
 
41
44
#include "gui/botcheckerwindow.h"
42
45
#include "gui/outfitwindow.h"
303
306
        {
304
307
            dstBeing->setAction(Being::STAND);
305
308
            dstBeing->setTileCoords(srcX, srcY);
306
 
            dstBeing->setDestination(dstX, dstY);
 
309
            if (serverVersion < 10)
 
310
                dstBeing->setDestination(dstX, dstY);
307
311
        }
308
312
    }
309
313
    else