Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tales of MajEyal
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
tome
Tales of MajEyal
Commits
754df486
Commit
754df486
authored
10 years ago
by
Grayswandir
Browse files
Options
Downloads
Patches
Plain Diff
Fix.
parent
520cc779
No related branches found
No related tags found
1 merge request
!44
Debug entity upvalue
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
game/engines/default/engine/Entity.lua
+12
-12
12 additions, 12 deletions
game/engines/default/engine/Entity.lua
with
12 additions
and
12 deletions
game/engines/default/engine/Entity.lua
+
12
−
12
View file @
754df486
...
...
@@ -65,18 +65,6 @@ end
function
_M
:
init
(
t
,
no_default
)
t
=
t
or
{}
if
config
.
settings
.
cheat
then
local
ok
,
err
=
table
.
check
(
e
,
function
(
t
,
where
,
v
,
tv
)
if
tv
~=
"function"
then
return
true
end
local
n
,
v
=
debug.getupvalue
(
v
,
1
)
if
not
n
then
return
true
end
return
nil
,
(
"Entity closure checker: %s has upvalue %s"
):
format
(
tostring
(
where
),
tostring
(
n
))
end
)
if
not
ok
then
error
(
"Entity definition has a closure: "
..
err
)
end
end
self
.
uid
=
next_uid
__uids
[
self
.
uid
]
=
self
next_uid
=
next_uid
+
1
...
...
@@ -133,6 +121,18 @@ function _M:init(t, no_default)
self
:
addParticles
(
Particles
.
new
(
pd
.
name
,
pd
.
rad
or
1
,
pd
.
args
))
end
end
if
config
.
settings
.
cheat
then
local
ok
,
err
=
table
.
check
(
self
,
function
(
t
,
where
,
v
,
tv
)
if
tv
~=
"function"
then
return
true
end
local
n
,
v
=
debug.getupvalue
(
v
,
1
)
if
not
n
then
return
true
end
return
nil
,
(
"Entity closure checker: %s has upvalue %s"
):
format
(
tostring
(
where
),
tostring
(
n
))
end
)
if
not
ok
then
error
(
"Entity definition has a closure: "
..
err
)
end
end
end
--- If we are cloned we need a new uid
...
...
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