Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tales of MajEyal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
Otowa Kotori
Tales of MajEyal
Commits
58d159d8
Commit
58d159d8
authored
5 years ago
by
DarkGod
Browse files
Options
Downloads
Patches
Plain Diff
stuff
parent
b5697798
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
game/engines/default/engine/interface/GameTargeting.lua
+1
-1
1 addition, 1 deletion
game/engines/default/engine/interface/GameTargeting.lua
game/modules/tome/data/talents/chronomancy/flux.lua
+1
-1
1 addition, 1 deletion
game/modules/tome/data/talents/chronomancy/flux.lua
with
2 additions
and
2 deletions
game/engines/default/engine/interface/GameTargeting.lua
+
1
−
1
View file @
58d159d8
...
...
@@ -308,7 +308,7 @@ function _M:targetGetForPlayer(typ)
msg
=
typ
.
msg
end
self
:
targetMode
(
"exclusive"
,
msg
,
coroutine.running
(),
typ
)
if
self
.
target
.
target
.
x
and
config
.
settings
.
auto_accept_target
and
not
typ
.
immediate_keys
and
not
typ
.
nolock
and
not
typ
.
nowarning
and
not
typ
.
no_restrict
then
if
self
.
target
.
target
.
x
and
config
.
settings
.
auto_accept_target
and
not
typ
.
immediate_keys
and
(
not
typ
.
nolock
or
typ
.
can_autoaccept
)
and
(
not
typ
.
nowarning
or
typ
.
can_autoaccept
)
and
(
not
typ
.
no_restrict
or
typ
.
can_autoaccept
)
then
self
.
target_co
=
nil
self
:
targetMode
(
false
,
false
)
self
.
tooltip_x
,
self
.
tooltip_y
=
nil
,
nil
return
self
.
target
.
target
.
x
,
self
.
target
.
target
.
y
,
self
.
target
.
target
.
entity
...
...
This diff is collapsed.
Click to expand it.
game/modules/tome/data/talents/chronomancy/flux.lua
+
1
−
1
View file @
58d159d8
...
...
@@ -110,7 +110,7 @@ newTalent{
getDamage
=
function
(
self
,
t
)
return
self
:
combatTalentSpellDamage
(
t
,
25
,
290
,
getParadoxSpellpower
(
self
,
t
))
end
,
getDuration
=
function
(
self
,
t
)
return
getExtensionModifier
(
self
,
t
,
4
)
end
,
target
=
function
(
self
,
t
)
return
{
type
=
"ball"
,
range
=
self
:
getTalentRange
(
t
),
radius
=
self
:
getTalentRadius
(
t
),
nowarning
=
true
,
talent
=
t
}
return
{
type
=
"ball"
,
range
=
self
:
getTalentRange
(
t
),
radius
=
self
:
getTalentRadius
(
t
),
nowarning
=
true
,
can_autoaccept
=
true
,
talent
=
t
}
end
,
requires_target
=
true
,
direct_hit
=
true
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment