Skip to content

Commit

Permalink
Removed the timeout from the draw blood technique. It already drains …
Browse files Browse the repository at this point in the history
…1 level (plus any experience to get the player to the base for that level), and it uses up a phial which is a scarce resource from the medical kit.
  • Loading branch information
elunna committed Sep 25, 2023
1 parent 6bac93a commit fbc8d6f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/tech.c
Original file line number Diff line number Diff line change
Expand Up @@ -1166,9 +1166,7 @@ int tech_no;
t_timeout = rn1(250, 250);
break;
case T_DRAW_BLOOD:
res = tech_drawblood();
if (res)
t_timeout = rn1(500, 500);
res = tech_drawblood(); /* No timeout */
break;
case T_JEDI_JUMP:
res = tech_jedijump();
Expand Down

0 comments on commit fbc8d6f

Please sign in to comment.