Skip to content

Commit

Permalink
increase projectile speed
Browse files Browse the repository at this point in the history
  • Loading branch information
Grokmoo committed Dec 25, 2024
1 parent 17234fb commit 3aad93a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sulis_state/src/entity_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ impl EntityState {
);
GameState::add_animation(anim);
} else if entity.borrow().actor.stats.attack_is_ranged() {
let anim = animation::ranged_attack_animation::new(entity, target, cbs, time);
let anim = animation::ranged_attack_animation::new(entity, target, cbs, time / 2);
GameState::add_animation(anim);
}

Expand Down

0 comments on commit 3aad93a

Please sign in to comment.