mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-15 00:01:28 +00:00
Merge branch 'master' of git://github.com/EQEmu/Server
This commit is contained in:
commit
a2f39e22d1
@ -38,20 +38,6 @@
|
||||
#include "../common/unix.h"
|
||||
#endif
|
||||
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
// Avoid an internal compiler error in VS 2015
|
||||
// Community RC (free) with the /O2 compiler
|
||||
// option enabled on x64 build; definite fail on
|
||||
// building Release-X64. Disabling optimizations
|
||||
// for the entire file might be overkill and/or
|
||||
// inapplicable to other builds, more testing needed.
|
||||
// Bug has been reported to MS, fix ETA unknown.
|
||||
#if (defined(_MSC_VER) && defined(_WIN64)&& _MSC_VER==1900)
|
||||
#pragma optimize( "", off )
|
||||
#endif
|
||||
|
||||
>>>>>>> 663ff552710e460946ba6aed6b431602a8019a08
|
||||
void Mob::CalcBonuses()
|
||||
{
|
||||
CalcSpellBonuses(&spellbonuses);
|
||||
@ -4695,11 +4681,8 @@ void Mob::NegateSpellsBonuses(uint16 spell_id)
|
||||
}
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
|
||||
// See line 3495 above, more or less
|
||||
=======
|
||||
// See line 41 above, more or less
|
||||
>>>>>>> 663ff552710e460946ba6aed6b431602a8019a08
|
||||
#if (defined(_MSC_VER) && defined(_WIN64)&& _MSC_VER==1900)
|
||||
#pragma optimize( "", on )
|
||||
#endif
|
||||
|
||||
@ -1279,6 +1279,11 @@ void Bot::LoadAAs() {
|
||||
points = 0;
|
||||
|
||||
AA::Rank *current = ability->first;
|
||||
|
||||
if (current->level_req > GetLevel()) {
|
||||
++iter;
|
||||
continue;
|
||||
}
|
||||
|
||||
while(current) {
|
||||
if(!CanUseAlternateAdvancementRank(current)) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user