mirror of
https://github.com/GreenComfyTea/MHR-Overlay.git
synced 2026-01-24 12:28:03 -08:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9b82e27725 | ||
|
|
2a3c8106d5 |
@@ -304,7 +304,7 @@ local insect_glaive_type_name = "insect_glaive";
|
|||||||
-- 13 Bow
|
-- 13 Bow
|
||||||
local bow_type_name = "bow";
|
local bow_type_name = "bow";
|
||||||
|
|
||||||
local previous_weapon_type = -1;
|
local previous_weapon_type = 0;
|
||||||
local previous_weapon_key = "great_sword";
|
local previous_weapon_key = "great_sword";
|
||||||
|
|
||||||
local spirit_gauge_breakpoints = {3, 2};
|
local spirit_gauge_breakpoints = {3, 2};
|
||||||
@@ -503,7 +503,7 @@ function this.update(player, player_data, weapon_type)
|
|||||||
end
|
end
|
||||||
|
|
||||||
previous_weapon_type = weapon_type;
|
previous_weapon_type = weapon_type;
|
||||||
previous_weapon_key = this.keys[previous_weapon_type].key;
|
previous_weapon_key = this.keys[previous_weapon_type + 1].key;
|
||||||
|
|
||||||
if weapon_type == 0 then
|
if weapon_type == 0 then
|
||||||
this.update_great_sword_skills(player);
|
this.update_great_sword_skills(player);
|
||||||
@@ -952,7 +952,7 @@ function this.update_sonic_bloom(player)
|
|||||||
|
|
||||||
local blast_speaker_shell = get_ref_blast_speaker_shell_method:call(player);
|
local blast_speaker_shell = get_ref_blast_speaker_shell_method:call(player);
|
||||||
if blast_speaker_shell == nil then
|
if blast_speaker_shell == nil then
|
||||||
this.list.bead_of_resonance = nil;
|
this.list.sonic_bloom = nil;
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -963,7 +963,7 @@ function this.update_sonic_bloom(player)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if utils.number.is_equal(life_timer, 0) then
|
if utils.number.is_equal(life_timer, 0) then
|
||||||
this.list.bead_of_resonance = nil;
|
this.list.sonic_bloom = nil;
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -972,7 +972,6 @@ end
|
|||||||
|
|
||||||
function this.update_charge_blade_skills(player)
|
function this.update_charge_blade_skills(player)
|
||||||
this.update_weapon_skill("element_boost", charge_blade_type_name, nil, nil, player, shield_buff_timer_field);
|
this.update_weapon_skill("element_boost", charge_blade_type_name, nil, nil, player, shield_buff_timer_field);
|
||||||
|
|
||||||
this.update_weapon_skill("sword_boost_mode", charge_blade_type_name, nil, nil, player, sword_buff_timer_field);
|
this.update_weapon_skill("sword_boost_mode", charge_blade_type_name, nil, nil, player, sword_buff_timer_field);
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ local os = os;
|
|||||||
local ValueType = ValueType;
|
local ValueType = ValueType;
|
||||||
local package = package;
|
local package = package;
|
||||||
|
|
||||||
this.version = "2.6.2";
|
this.version = "2.6.3";
|
||||||
|
|
||||||
this.config_folder = "MHR Overlay\\configs\\";
|
this.config_folder = "MHR Overlay\\configs\\";
|
||||||
this.current_config_value_file_name = "MHR Overlay\\config.json";
|
this.current_config_value_file_name = "MHR Overlay\\config.json";
|
||||||
|
|||||||
Reference in New Issue
Block a user