1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00

Merge branch 'Swimming-in-the-90s' into 'master'

Use correct index for Athletics_SwimOneSecond

See merge request OpenMW/openmw!3913
This commit is contained in:
Alexei Kotov 2024-02-28 09:14:19 +00:00
commit 9d5ef10304
2 changed files with 3 additions and 3 deletions

View File

@ -75,7 +75,7 @@ namespace ESM
Speechcraft_Fail = 1, Speechcraft_Fail = 1,
Armorer_Repair = 0, Armorer_Repair = 0,
Athletics_RunOneSecond = 0, Athletics_RunOneSecond = 0,
Athletics_SwimOneSecond = 0, Athletics_SwimOneSecond = 1,
}; };

View File

@ -32,7 +32,7 @@ local Skill = core.stats.Skill
-- @field #number Speechcraft_Fail 1 -- @field #number Speechcraft_Fail 1
-- @field #number Armorer_Repair 0 -- @field #number Armorer_Repair 0
-- @field #number Athletics_RunOneSecond 0 -- @field #number Athletics_RunOneSecond 0
-- @field #number Athletics_SwimOneSecond 0 -- @field #number Athletics_SwimOneSecond 1
--- ---
-- Table of valid sources for skill increases -- Table of valid sources for skill increases
@ -240,7 +240,7 @@ return {
Speechcraft_Fail = 1, Speechcraft_Fail = 1,
Armorer_Repair = 0, Armorer_Repair = 0,
Athletics_RunOneSecond = 0, Athletics_RunOneSecond = 0,
Athletics_SwimOneSecond = 0, Athletics_SwimOneSecond = 1,
}, },
--- Trigger a skill level up, activating relevant handlers --- Trigger a skill level up, activating relevant handlers