Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tales of MajEyal
Manage
Activity
Members
Labels
Code
Merge requests
63
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tome
Tales of MajEyal
Merge requests
!784
fix occasionally Multicaster is triggered more than twice per turn
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix occasionally Multicaster is triggered more than twice per turn
yutio888/t-engine4:fix_multicaster
into
master
Overview
3
Commits
1
Pipelines
0
Changes
1
Merged
yutio888
requested to merge
yutio888/t-engine4:fix_multicaster
into
master
3 years ago
Overview
3
Commits
1
Pipelines
0
Changes
1
Expand
it occurs when spell triggered by Multicaster triggers a new beam by talent_on_spell.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
4695b168
1 commit,
3 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
game/modules/tome/data/talents/spells/thaumaturgy.lua
+
1
−
1
Options
@@ -95,10 +95,10 @@ newTalent{
end
local
choice
=
rng
.
rarityTable
(
tids
,
"cd"
)
if
not
choice
then
return
end
self
:
forceUseTalent
(
choice
.
tid
,
{
ignore_cooldown
=
true
,
ignore_energy
=
true
,
force_target
=
self
.
_orb_of_thaumaturgy_recurs
or
target
})
if
self
.
_orb_of_thaumaturgy_recurs
then
self
.
turn_procs
.
multicaster_orb
=
true
else
self
.
turn_procs
.
multicaster
=
true
end
self
:
forceUseTalent
(
choice
.
tid
,
{
ignore_cooldown
=
true
,
ignore_energy
=
true
,
force_target
=
self
.
_orb_of_thaumaturgy_recurs
or
target
})
end
,
activate
=
function
(
self
,
t
)
local
ret
=
{}
Loading