mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-15 10:09:42 +00:00
Use correct index for Athletics_SwimOneSecond
This commit is contained in:
parent
b9fc9f0827
commit
c82c111ee1
2 changed files with 3 additions and 3 deletions
|
@ -75,7 +75,7 @@ namespace ESM
|
|||
Speechcraft_Fail = 1,
|
||||
Armorer_Repair = 0,
|
||||
Athletics_RunOneSecond = 0,
|
||||
Athletics_SwimOneSecond = 0,
|
||||
Athletics_SwimOneSecond = 1,
|
||||
|
||||
};
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ local Skill = core.stats.Skill
|
|||
-- @field #number Speechcraft_Fail 1
|
||||
-- @field #number Armorer_Repair 0
|
||||
-- @field #number Athletics_RunOneSecond 0
|
||||
-- @field #number Athletics_SwimOneSecond 0
|
||||
-- @field #number Athletics_SwimOneSecond 1
|
||||
|
||||
---
|
||||
-- Table of valid sources for skill increases
|
||||
|
@ -240,7 +240,7 @@ return {
|
|||
Speechcraft_Fail = 1,
|
||||
Armorer_Repair = 0,
|
||||
Athletics_RunOneSecond = 0,
|
||||
Athletics_SwimOneSecond = 0,
|
||||
Athletics_SwimOneSecond = 1,
|
||||
},
|
||||
|
||||
--- Trigger a skill level up, activating relevant handlers
|
||||
|
|
Loading…
Reference in a new issue