mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2025-04-08 09:41:24 +02:00
pos_marker, pos_marker_wall: default to 1 hp
This commit is contained in:
@ -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,7 +22,8 @@ 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",
|
||||||
"worldeditadditions_core_marker_wall.png",
|
"worldeditadditions_core_marker_wall.png",
|
||||||
|
Reference in New Issue
Block a user