This repository has been archived on 2025-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
spaceinator/scripts/damage_player.gml
2020-07-25 00:24:30 +12:00

8 lines
117 B
Text

///damage_player(amount)
if(invuln_counter == invuln_counter_max)
{
hp -= argument0;
invuln_counter = 0;
}