Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
t-engine4
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor 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
Hachem_Muche
t-engine4
Commits
1a0964bd
Commit
1a0964bd
authored
8 years ago
by
DarkGod
Browse files
Options
Downloads
Patches
Plain Diff
cloak shoulders correctly show
parent
277e1262
No related branches found
Branches containing commit
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
+1
-1
1 addition, 1 deletion
game/modules/tome/class/Actor.lua
with
1 addition
and
1 deletion
game/modules/tome/class/Actor.lua
+
1
−
1
View file @
1a0964bd
...
...
@@ -3596,12 +3596,12 @@ function _M:updateModdableTile()
end
end
i
=
self
.
inven
[
self
.
INVEN_CLOAK
];
if
i
and
i
[
1
]
and
i
[
1
].
moddable_tile
then
add
[
#
add
+
1
]
=
{
image
=
base
..
(
i
[
1
].
moddable_tile
):
format
(
"shoulder"
)
..
".png"
,
auto_tall
=
1
}
end
i
=
self
.
inven
[
self
.
INVEN_FEET
];
if
i
and
i
[
1
]
and
i
[
1
].
moddable_tile
then
add
[
#
add
+
1
]
=
{
image
=
base
..
(
i
[
1
].
moddable_tile
)
..
".png"
,
auto_tall
=
1
}
end
i
=
self
.
inven
[
self
.
INVEN_BODY
];
if
i
and
i
[
1
]
and
i
[
1
].
moddable_tile2
then
add
[
#
add
+
1
]
=
{
image
=
base
..
(
i
[
1
].
moddable_tile2
)
..
".png"
,
auto_tall
=
1
}
elseif
not
self
:
attr
(
"moddable_tile_nude"
)
then
add
[
#
add
+
1
]
=
{
image
=
base
..
(
self
:
attr
(
"moddable_tile_lower_underwear"
)
or
"lower_body_01.png"
),
auto_tall
=
1
}
end
i
=
self
.
inven
[
self
.
INVEN_BODY
];
if
i
and
i
[
1
]
and
i
[
1
].
moddable_tile
then
add
[
#
add
+
1
]
=
{
image
=
base
..
(
i
[
1
].
moddable_tile
)
..
".png"
,
auto_tall
=
1
}
elseif
not
self
:
attr
(
"moddable_tile_nude"
)
then
add
[
#
add
+
1
]
=
{
image
=
base
..
(
self
:
attr
(
"moddable_tile_higher_underwear"
)
or
"upper_body_01.png"
),
auto_tall
=
1
}
end
i
=
self
.
inven
[
self
.
INVEN_CLOAK
];
if
i
and
i
[
1
]
and
i
[
1
].
moddable_tile
then
add
[
#
add
+
1
]
=
{
image
=
base
..
(
i
[
1
].
moddable_tile
):
format
(
"shoulder"
)
..
".png"
,
auto_tall
=
1
}
end
local
done_head
=
false
i
=
self
.
inven
[
self
.
INVEN_CLOAK
];
if
config
.
settings
.
tome
.
show_cloak_hoods
and
i
and
i
[
1
]
and
i
[
1
].
moddable_tile_hood
then
add
[
#
add
+
1
]
=
{
image
=
base
..
(
i
[
1
].
moddable_tile
):
format
(
"hood"
)
..
".png"
,
auto_tall
=
1
}
done_head
=
true
end
i
=
self
.
inven
[
self
.
INVEN_HEAD
];
if
not
done_head
and
i
and
i
[
1
]
and
i
[
1
].
moddable_tile
then
add
[
#
add
+
1
]
=
{
image
=
base
..
(
i
[
1
].
moddable_tile
)
..
".png"
,
auto_tall
=
1
}
done_head
=
true
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