mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-19 13:28:25 +00:00
Squashed commit of the following:
commit5d074ea998Author: Michael Cook <mcook@mackal.net> Date: Thu Jun 5 02:57:56 2014 -0400 Update LS default entry in example config commite9c4613368Merge:3690f93dd73b82Author: KimLS <KLS@peqtgc.com> Date: Wed Jun 4 18:32:48 2014 -0700 Merge branch 'master' into water_map_v2 commit3690f93302Author: KimLS <KLS@peqtgc.com> Date: Sat May 31 16:32:15 2014 -0700 Fix for fear failing, removed #fear command because it was blank anyway, added a cmake command to change the default map/water/path directory commitdd73b82ec2Author: KimLS <KLS@peqtgc.com> Date: Tue May 27 16:16:06 2014 -0700 Fix for a problem with global player quests and hasquestsub commit8a5405060fAuthor: KimLS <KLS@peqtgc.com> Date: Fri May 23 17:39:16 2014 -0700 Fix for string.h missing in water map commit83270d0983Author: KimLS <KLS@peqtgc.com> Date: Fri May 23 16:10:23 2014 -0700 Merge from master stuff commitfd4343702fMerge:0483e8b5af47c5Author: KimLS <KLS@peqtgc.com> Date: Fri May 23 16:09:46 2014 -0700 Merge branch 'master' into water_map_v2 commit0483e8bd1bAuthor: KimLS <KLS@peqtgc.com> Date: Fri May 23 16:08:02 2014 -0700 Removed the logging now that the issue is resolved commit39cbdbd5c2Author: KimLS <KLS@peqtgc.com> Date: Fri May 23 15:54:26 2014 -0700 Debug logs for map, also can actually turn perl off on zone commit3a2ccd7521Author: KimLS <KLS@peqtgc.com> Date: Wed May 21 17:30:54 2014 -0700 Added loading of v2 regular maps, also #bestz will report water info even if a reg map failed to load. commit8c92271804Author: KimLS <KLS@peqtgc.com> Date: Tue May 20 00:14:26 2014 -0700 Initial v2 water map format.
This commit is contained in:
+10
-6
@@ -1263,12 +1263,14 @@ XS(XS_Client_MovePC)
|
||||
THIS->MovePC(zoneID, x, y, z, heading);
|
||||
}
|
||||
else {
|
||||
if (THIS->IsBot())
|
||||
_log(CLIENT__ERROR, "Perl(XS_Client_MovePC) attempted to process a type Bot reference");
|
||||
else if (THIS->IsMerc())
|
||||
if (THIS->IsMerc())
|
||||
_log(CLIENT__ERROR, "Perl(XS_Client_MovePC) attempted to process a type Merc reference");
|
||||
else if (THIS->IsNPC())
|
||||
_log(CLIENT__ERROR, "Perl(XS_Client_MovePC) attempted to process a type NPC reference");
|
||||
#ifdef BOTS
|
||||
else if (THIS->IsBot())
|
||||
_log(CLIENT__ERROR, "Perl(XS_Client_MovePC) attempted to process a type Bot reference");
|
||||
#endif
|
||||
else
|
||||
_log(CLIENT__ERROR, "Perl(XS_Client_MovePC) attempted to process an Unknown type reference");
|
||||
|
||||
@@ -1307,12 +1309,14 @@ XS(XS_Client_MovePCInstance)
|
||||
THIS->MovePC(zoneID, instanceID, x, y, z, heading);
|
||||
}
|
||||
else {
|
||||
if (THIS->IsBot())
|
||||
_log(CLIENT__ERROR, "Perl(XS_Client_MovePCInstance) attempted to process a type Bot reference");
|
||||
else if (THIS->IsMerc())
|
||||
if (THIS->IsMerc())
|
||||
_log(CLIENT__ERROR, "Perl(XS_Client_MovePCInstance) attempted to process a type Merc reference");
|
||||
else if (THIS->IsNPC())
|
||||
_log(CLIENT__ERROR, "Perl(XS_Client_MovePCInstance) attempted to process a type NPC reference");
|
||||
#ifdef BOTS
|
||||
else if (THIS->IsBot())
|
||||
_log(CLIENT__ERROR, "Perl(XS_Client_MovePCInstance) attempted to process a type Bot reference");
|
||||
#endif
|
||||
else
|
||||
_log(CLIENT__ERROR, "Perl(XS_Client_MovePCInstance) attempted to process an Unknown type reference");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user