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
c562fd60
Commit
c562fd60
authored
9 years ago
by
DarkGod
Browse files
Options
Downloads
Patches
Plain Diff
Stores can now ignore material levels with ignore_material_levels=true
parent
282d3dc8
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/Store.lua
+9
-0
9 additions, 0 deletions
game/modules/tome/class/Store.lua
with
9 additions
and
0 deletions
game/modules/tome/class/Store.lua
+
9
−
0
View file @
c562fd60
...
...
@@ -65,15 +65,24 @@ end
-- @param zone the zone to generate for
function
_M
:
loadup
(
level
,
zone
)
local
oldlev
=
zone
.
base_level
local
old_minml
=
zone
.
min_material_level
local
old_maxml
=
zone
.
max_material_level
if
zone
.
store_levels_by_restock
then
zone
.
base_level
=
zone
.
store_levels_by_restock
[
game
.
state
.
stores_restock
]
or
zone
.
base_level
end
if
self
.
store
.
ignore_material_levels
then
zone
.
min_material_level
=
1
zone
.
max_material_level
=
5
end
if
Store
.
loadup
(
self
,
level
,
zone
,
self
.
store
.
nb_fill
)
then
self
.
last_filled
=
game
.
state
.
stores_restock
end
zone
.
min_material_level
=
old_minml
zone
.
max_material_level
=
old_maxml
zone
.
base_level
=
oldlev
-- clear chrono worlds and their various effects
...
...
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