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
6cd4cde5
Commit
6cd4cde5
authored
13 years ago
by
dg
Browse files
Options
Downloads
Patches
Plain Diff
fix
git-svn-id:
http://svn.net-core.org/repos/t-engine4@4022
51575b47-30f0-44d4-a5cc-537603b46e54
parent
7aacae35
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/engines/default/engine/PlayerProfile.lua
+2
-2
2 additions, 2 deletions
game/engines/default/engine/PlayerProfile.lua
with
2 additions
and
2 deletions
game/engines/default/engine/PlayerProfile.lua
+
2
−
2
View file @
6cd4cde5
...
...
@@ -518,7 +518,7 @@ function _M:getConfigs(module, cb, mod_def)
end
end
else
for
k
,
_
in
pairs
((
mod_def
or
game
.
__mod_info
).
profile_defs
)
do
for
k
,
_
in
pairs
((
mod_def
or
game
.
__mod_info
).
profile_defs
or
{}
)
do
if
not
_
.
no_sync
then
core
.
profile
.
pushOrder
(
table
.
serialize
{
o
=
"GetConfigs"
,
module
=
module
,
kind
=
k
})
end
...
...
@@ -564,7 +564,7 @@ function _M:syncOnline(module, mod_def)
end
end
else
for
k
,
def
in
pairs
((
mod_def
or
game
.
__mod_info
).
profile_defs
)
do
for
k
,
def
in
pairs
((
mod_def
or
game
.
__mod_info
).
profile_defs
or
{}
)
do
if
not
def
.
no_sync
and
def
.
export
and
sync
[
k
]
then
local
f
=
def
.
export
local
ret
=
{}
...
...
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