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
79a919e9
Commit
79a919e9
authored
10 years ago
by
Alex Ksandra
Browse files
Options
Downloads
Patches
Plain Diff
removeEffectsFilter now is not limited by effects' number.
parent
4f19099e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
game/modules/tome/class/Actor.lua
+12
-6
12 additions, 6 deletions
game/modules/tome/class/Actor.lua
with
12 additions
and
6 deletions
game/modules/tome/class/Actor.lua
+
12
−
6
View file @
79a919e9
...
...
@@ -5515,7 +5515,6 @@ end
--- Remove all effects based on a filter
function
_M
:
removeEffectsFilter
(
t
,
nb
,
silent
,
force
)
nb
=
nb
or
100000
local
effs
=
{}
local
removed
=
0
...
...
@@ -5528,11 +5527,18 @@ function _M:removeEffectsFilter(t, nb, silent, force)
end
end
while
#
effs
>
0
and
nb
>
0
do
local
eff
=
rng
.
tableRemove
(
effs
)
self
:
removeEffect
(
eff
,
silent
,
force
)
nb
=
nb
-
1
removed
=
removed
+
1
if
nb
then
while
#
effs
>
0
and
nb
>
0
do
local
eff
=
rng
.
tableRemove
(
effs
)
self
:
removeEffect
(
eff
,
silent
,
force
)
nb
=
nb
-
1
removed
=
removed
+
1
end
else
removed
=
#
effs
for
i
=
1
,
#
effs
do
self
:
removeEffect
(
effs
[
i
],
silent
,
force
)
end
end
return
removed
end
...
...
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