Skip to content

Commit

Permalink
Add speed to the list of brands gods can hate when casting Tukima's D…
Browse files Browse the repository at this point in the history
…ance
  • Loading branch information
cbuchananhowland committed Aug 23, 2015
1 parent df19ebb commit 380bf3d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crawl-ref/source/item_use.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1842,8 +1842,11 @@ bool god_hates_brand(const int brand)
if (you_worship(GOD_SHINING_ONE) && brand == SPWPN_VENOM)
return true;

if (you_worship(GOD_CHEIBRIADOS) && brand == SPWPN_CHAOS)
if (you_worship(GOD_CHEIBRIADOS) && (brand == SPWPN_CHAOS
|| brand == SPWPN_SPEED))
{
return true;
}

return false;
}
Expand Down

0 comments on commit 380bf3d

Please sign in to comment.