Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion player.c
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,12 @@ void Link_HandleRecoilAndTimer(bool jump_into_middle) { // 878711
link_item_in_hand = 0;
link_position_mode = 0;
player_handler_timer = 0;
link_disable_sprite_damage = 0;
//link can die and revive over deep water without flippers or as a bunny
if ((enhanced_features0 & kFeatures0_MiscBugFixes) && (!link_item_flippers || link_is_bunny || link_is_bunny_mirror)) {
link_disable_sprite_damage = 1;
} else {
link_disable_sprite_damage = 0;
}
link_electrocute_on_touch = 0;
link_actual_vel_x = 0;
link_actual_vel_y = 0;
Expand Down