mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-10 18:23:01 +00:00
pos_marker, pos_marker_wall: default to 1 hp
This commit is contained in:
parent
7be2fb125e
commit
125638a079
2 changed files with 3 additions and 2 deletions
|
@ -18,7 +18,7 @@ local WEAPositionMarker = {
|
||||||
collisionbox = { -0.55, -0.55, -0.55, 0.55, 0.55, 0.55 },
|
collisionbox = { -0.55, -0.55, -0.55, 0.55, 0.55, 0.55 },
|
||||||
physical = false,
|
physical = false,
|
||||||
collide_with_objects = false,
|
collide_with_objects = false,
|
||||||
health = 0,
|
hp_max = 1,
|
||||||
|
|
||||||
textures = {
|
textures = {
|
||||||
"worldeditadditions_core_bg.png",
|
"worldeditadditions_core_bg.png",
|
||||||
|
|
|
@ -22,6 +22,7 @@ local WEAPositionMarkerWall = {
|
||||||
-- ^^ { xmin, ymin, zmin, xmax, ymax, zmax } relative to obj pos
|
-- ^^ { xmin, ymin, zmin, xmax, ymax, zmax } relative to obj pos
|
||||||
physical = false,
|
physical = false,
|
||||||
collide_with_objects = false,
|
collide_with_objects = false,
|
||||||
|
hp_max = 1,
|
||||||
|
|
||||||
textures = {
|
textures = {
|
||||||
"worldeditadditions_core_marker_wall.png",
|
"worldeditadditions_core_marker_wall.png",
|
||||||
|
|
Loading…
Reference in a new issue