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
656f6b53
Commit
656f6b53
authored
10 years ago
by
Hachem_Muche
Browse files
Options
Downloads
Patches
Plain Diff
Fixes the upvalue problem with Wintertide's storm effect.
parent
58d7976e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
game/modules/tome/data/general/objects/boss-artifacts-maj-eyal.lua
+3
-1
3 additions, 1 deletion
...les/tome/data/general/objects/boss-artifacts-maj-eyal.lua
with
3 additions
and
1 deletion
game/modules/tome/data/general/objects/boss-artifacts-maj-eyal.lua
+
3
−
1
View file @
656f6b53
...
...
@@ -98,10 +98,11 @@ It is said the Conclave created this weapon for their warmaster during the dark
function
(
e
,
update_shape_only
)
if
not
update_shape_only
then
-- Increase the radius by 0.2 each time the effect ticks (1000 energy?)
if
e
.
radius
<
special
.
max_radius
then
if
e
.
radius
<
e
.
max_radius
then
e
.
radius
=
e
.
radius
+
0
.
2
if
e
.
particles
and
math.floor
(
e
.
particles
[
1
].
args
.
radius
)
~=
math.floor
(
e
.
radius
)
then
-- expand the graphical effect
e
.
particles
[
1
].
args
.
radius
=
e
.
radius
e
.
particles
[
1
].
radius
=
e
.
radius
-- is this needed?
e
.
particles
[
1
]:
dieDisplay
()
e
.
particles
[
1
]:
checkDisplay
()
end
...
...
@@ -113,6 +114,7 @@ It is said the Conclave created this weapon for their warmaster during the dark
false
)
self
.
winterStorm
.
is_wintertide
=
true
self
.
winterStorm
.
max_radius
=
special
.
max_radius
else
-- The storm already exists so move it on top of the target and increase its duration
self
.
winterStorm
.
x
=
target
.
x
...
...
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