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
1a9b07ba
Commit
1a9b07ba
authored
10 years ago
by
Hachem_Muche
Browse files
Options
Downloads
Patches
Plain Diff
Fixes a rare case of ego's not being properly loaded during randart generation.
parent
9a67b421
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/GameState.lua
+4
-3
4 additions, 3 deletions
game/modules/tome/class/GameState.lua
with
4 additions
and
3 deletions
game/modules/tome/class/GameState.lua
+
4
−
3
View file @
1a9b07ba
...
...
@@ -525,11 +525,12 @@ function _M:generateRandart(data)
local
picked_egos
=
{}
local
legos
=
{}
local
been_greater
=
0
game
.
zone
:
getEntities
(
game
.
level
,
"object"
)
-- make sure ego definitions are loaded
-- merge all egos into one list to correctly calculate rarities
table
.
append
(
legos
,
game
.
level
:
getEntitiesList
(
"object/"
..
o
.
egos
..
":prefix"
)
or
{})
table
.
append
(
legos
,
game
.
level
:
getEntitiesList
(
"object/"
..
o
.
egos
..
":suffix"
)
or
{})
table
.
append
(
legos
,
game
.
level
:
getEntitiesList
(
"object/"
..
o
.
egos
..
":"
)
or
{})
--print(" * loaded ", #legos, "ego definitions
"
)
--
print(" * loaded ", #legos, "ego definitions
from ", o.egos
)
for
i
=
1
,
nb_egos
or
3
do
local
list
=
{}
local
gr_ego
,
ignore_filter
=
false
,
false
...
...
@@ -593,7 +594,7 @@ function _M:generateRandart(data)
points
=
points
+
xpoints
end
end
o
.
egos
=
nil
o
.
egos_chance
=
nil
o
.
force_ego
=
nil
--
o.egos = nil o.egos_chance = nil o.force_ego = nil
end
-- Re-resolve with the (possibly) new resolvers
o
:
resolve
()
...
...
@@ -635,7 +636,7 @@ function _M:generateRandart(data)
local
p
=
powers
[
i
]
if
p
and
p
.
points
<=
hpoints
*
2
then
-- Intentionally allow the budget to be exceeded slightly to guarantee powers at low levels
local
state
=
{
scaleup
=
math.max
(
1
,(
lev
/
(
p
.
level_range
[
2
]
or
50
))
^
0
.
5
)}
--Adjust scaleup factor for each power based on lev and level_range max
--
print(" * adding power: "..p.name.."("..p.points.." points)")
print
(
" * adding power: "
..
p
.
name
..
"("
..
p
.
points
..
" points)"
)
selected_powers
[
p
.
name
]
=
selected_powers
[
p
.
name
]
or
{}
table
.
ruleMergeAppendAdd
(
selected_powers
[
p
.
name
],
p
,
{
merger
},
state
)
hpoints
=
hpoints
-
p
.
points
...
...
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