Skip to content

Commit

Permalink
Belatedly apply merge fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingranade committed Nov 9, 2013
1 parent 338923b commit 77e5f36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions melee.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -942,9 +942,9 @@ void player::perform_technique(ma_technique technique, game *g, monster *z,
// this would be i2amroy's fix, but it's kinda handy
bool player::can_weapon_block()
{
return (weapon.has_technique("WBLOCK_1", this) ||
weapon.has_technique("WBLOCK_2", this) ||
weapon.has_technique("WBLOCK_3", this));
return (weapon.has_technique("WBLOCK_1") ||
weapon.has_technique("WBLOCK_2") ||
weapon.has_technique("WBLOCK_3"));
}

bool player::block_hit(game *g, monster *z, player *p, body_part &bp_hit, int &side,
Expand Down

0 comments on commit 77e5f36

Please sign in to comment.