Make Demo have a pained default expression at low HP.

This commit is contained in:
Mari the Deer 2023-08-21 11:38:08 +02:00
commit 96fff41826
3 changed files with 4 additions and 4 deletions

View file

@ -1,3 +1,3 @@
[default]
SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r936 \cu(Mon 21 Aug 11:28:41 CEST 2023)\c-";
SWWM_SHORTVER="\cw1.3pre r936 \cu(2023-08-21 11:28:41)\c-";
SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r937 \cu(Mon 21 Aug 11:38:08 CEST 2023)\c-";
SWWM_SHORTVER="\cw1.3pre r937 \cu(2023-08-21 11:38:08)\c-";

View file

@ -100,7 +100,7 @@ extend Class SWWMStatusBar
return 4;
break;
}
return 2;
return (CPlayer.Health<=25)?17:2;
}
private void DrawMugshot()

View file

@ -155,6 +155,6 @@ extend Class Demolitionist
return 1;
break;
}
return 4;
return (player.Health<=25)?13:4;
}
}