Skip to content

Commit

Permalink
bugfix (#72149)
Browse files Browse the repository at this point in the history
  • Loading branch information
rty275 committed Mar 29, 2024
1 parent 199d61c commit cba18c3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions data/mods/Magiclysm/jmath.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
"type": "jmath_function",
"id": "evocation_proficiency_negate_calculate",
"num_args": 1,
"return": "_0 - ((u_proficiency('prof_magic_evocation_beginner', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_evocation_apprentice', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_evocation_master', 'format': 'percent') * 1) / 10)"
"return": "_0 - ((u_proficiency('prof_magic_evocation_beginner', 'format': 'percent') * 1) / 10) - ((u_proficiency('prof_magic_evocation_apprentice', 'format': 'percent') * 1) / 10) - ((u_proficiency('prof_magic_evocation_master', 'format': 'percent') * 1) / 10)"
},
{
"type": "jmath_function",
"id": "channeling_proficiency_negate_calculate",
"num_args": 1,
"return": "_0 - ((u_proficiency('prof_magic_channel_beginner', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_channel_apprentice', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_channel_master', 'format': 'percent') * 1) / 10)"
"return": "_0 - ((u_proficiency('prof_magic_channel_beginner', 'format': 'percent') * 1) / 10) - ((u_proficiency('prof_magic_channel_apprentice', 'format': 'percent') * 1) / 10) - ((u_proficiency('prof_magic_channel_master', 'format': 'percent') * 1) / 10)"
},
{
"type": "jmath_function",
Expand All @@ -33,7 +33,7 @@
"type": "jmath_function",
"id": "summoning_proficiency_negate_calculate",
"num_args": 1,
"return": "_0 - ((u_proficiency('prof_magic_summon_beginner', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_summon_apprentice', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_summon_master', 'format': 'percent') * 1) / 10)"
"return": "_0 - ((u_proficiency('prof_magic_summon_beginner', 'format': 'percent') * 1) / 10) - ((u_proficiency('prof_magic_summon_apprentice', 'format': 'percent') * 1) / 10) - ((u_proficiency('prof_magic_summon_master', 'format': 'percent') * 1) / 10)"
},
{
"type": "jmath_function",
Expand All @@ -45,7 +45,7 @@
"type": "jmath_function",
"id": "enhancement_proficiency_negate_calculate",
"num_args": 1,
"return": "_0 - ((u_proficiency('prof_magic_enhancement_beginner', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_enhancement_apprentice', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_enhancement_master', 'format': 'percent') * 1) / 10)"
"return": "_0 - ((u_proficiency('prof_magic_enhancement_beginner', 'format': 'percent') * 1) / 10) - ((u_proficiency('prof_magic_enhancement_apprentice', 'format': 'percent') * 1) / 10) - ((u_proficiency('prof_magic_enhancement_master', 'format': 'percent') * 1) / 10)"
},
{
"type": "jmath_function",
Expand All @@ -57,6 +57,6 @@
"type": "jmath_function",
"id": "conveyance_proficiency_negate_calculate",
"num_args": 1,
"return": "_0 - ((u_proficiency('prof_magic_conveyance_beginner', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_conveyance_apprentice', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_conveyance_master', 'format': 'percent') * 1) / 10)"
"return": "_0 - ((u_proficiency('prof_magic_conveyance_beginner', 'format': 'percent') * 1) / 10) - ((u_proficiency('prof_magic_conveyance_apprentice', 'format': 'percent') * 1) / 10) - ((u_proficiency('prof_magic_conveyance_master', 'format': 'percent') * 1) / 10)"
}
]

0 comments on commit cba18c3

Please sign in to comment.