Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#2775 - updated mistweaver flask for patch 8.2.5 #4942

Merged
merged 6 commits into from
Sep 11, 2019
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ addons:
- libcurl3
- libcurl4-gnutls-dev

osx_image:
- xcode8.3
- xcode10

#env:
# Each line is a separate build in the build matrix. A build in the build
# matrix is defined by the environment variables defined on the line, which
Expand All @@ -47,7 +51,8 @@ matrix:

before_install:
# Install bats on OSX through brew
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update && brew install bats; fi
# retry via travis_retry because brew sometimes hangs
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then travis_retry brew update && travis_retry brew install bats; fi

notifications:
irc:
Expand Down
2 changes: 1 addition & 1 deletion engine/class_modules/sc_demon_hunter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ class demon_hunter_t : public player_t
void combat_begin() override;
demon_hunter_td_t* get_target_data( player_t* target ) const override;
void interrupt() override;
double resource_gain( resource_e, double, gain_t* g = nullptr, action_t* a = nullptr );
double resource_gain( resource_e, double, gain_t* g = nullptr, action_t* a = nullptr ) override;
void recalculate_resource_max( resource_e ) override;
void reset() override;
void merge( player_t& other ) override;
Expand Down
4 changes: 3 additions & 1 deletion engine/class_modules/sc_monk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9500,7 +9500,9 @@ std::string monk_t::default_flask() const
return "disabled";
break;
case MONK_MISTWEAVER:
if ( true_level > 110 )
if ( true_level > 119 )
return "greater_flask_of_endless_fathoms"; // lvl 120 should use best flask
else if ( true_level > 110 )
return "endless_fathoms";
else if ( true_level > 100 )
return "whispered_pact";
Expand Down