-
-
Notifications
You must be signed in to change notification settings - Fork 390
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
Replace "gold only" chest dialog with "gold or exp" one in case when hero has no space for an artifact #9607
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clang-Tidy
found issue(s) with the introduced code (1/1)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @roman-yagodin , I left few comments here. Could you please take a look when you have time?
@@ -1835,24 +1849,12 @@ namespace | |||
const Artifact & art = getArtifactFromTile( tile ); | |||
|
|||
if ( gold ) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to do the same change for the AI in void AIToTreasureChest()
function.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @roman-yagodin , we haven't addressed this comment. We have to do the similar changes for the AI as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, I will look at it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ihhub, I've made some changes to AIToTreasureChest()
function, but not sure I understand all ins and outs. Could you please check it out and give me some further directions? I wonder how it can be tested in first place.
OK, sure. |
in case when hero has no space for an artifact
- pass gold param via reference, - standardize msg var declaration, - move function code up the source
116bbb1
to
6aeb707
Compare
Hi @roman-yagodin , if you would be able to update the pull request by today then we can merge it to the upcoming release. |
…no place for an artifact
This will resolve #9546.