Compare commits

..

No commits in common. "373d5fcf43aa9565bc253705a7bf8144c686702c" and "6c5a24e374ea68b1d8d483d9c6065c74a7d81e91" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -181,7 +181,7 @@ void Rifle::notify_deselected() {
get_input()->disconnect(PlayerInput::sig_primary_fire, callable_mp(this, &self_type::on_primary_fire));
get_input()->disconnect(PlayerInput::sig_alt_mode, callable_mp(this, &self_type::on_alt_mode));
get_input()->disconnect(PlayerInput::sig_reload, callable_mp(this, &self_type::on_reload));
this->running = false;
get_camera()->set_fov_factor(1.0);
if (HeadsUpDisplay * hud{ HeadsUpDisplay::get_singleton() }) {
hud->set_reticle_visibility(true);
}

View file

@ -13,7 +13,7 @@ func trigger() -> void:
anim = NodePath("revolver/AnimationPlayer")
max_ammo = 6
loaded_ammo = 6
single_action_spread = 0.015
single_action_spread = 0.003
double_action_spread = 0.04
[node name="revolver" parent="." instance=ExtResource("1_5ynga")]