MilesPacis reports: when trying to craft the wood ... #644

Closed
opened 2021-06-10 20:11:44 +00:00 by yourland-report · 2 comments

MilesPacis reports a bug:

when trying to craft the wood extended crossbrace from the wood crossbrace, the crafting only gives sticks as an option.

Player position:

{
	y = 85.5,
	x = 1526.4901123047,
	z = 385.69299316406
}

Player look:

{
	y = -0.43035355210304,
	x = 0.85062289237976,
	z = 0.30205389857292
}

Player information:

{
	min_rtt = 0.043000001460314,
	max_rtt = 1.779000043869,
	connection_uptime = 4962,
	max_jitter = 1.2969999313354,
	minor = 4,
	major = 5,
	ip_version = 6,
	formspec_version = 4,
	patch = 0,
	protocol_version = 39,
	serialization_version = 28,
	lang_code = "it",
	version_string = "5.4.0",
	avg_rtt = 0.045000001788139,
	state = "Active",
	avg_jitter = 0.0019999966025352,
	min_jitter = 0,
	address = "::ffff:79.50.85.234"
}

Player meta:

{
	fields = {
		["3d_armor_inventory"] = "return {\"3d_armor:helmet_crystal 1 6470\", \"3d_armor:chestplate_diamond 1 18420\", \"3d_armor:boots_crystal 1 9210\", \"shields:shield_gold 1 27630\", \"3d_armor:leggings_gold 1 2460\", \"\"}",
		yl_commons_thankyou = "5",
		jointime = "1611708658",
		yl_commons_player_joined = "1623351058",
		["signslib:pos"] = "(1564,-60,377)",
		digged_nodes = "57166",
		bitten = "0",
		partychat = "party",
		yl_church = "return {[\"last_death\"] = {[\"y\"] = 27, [\"x\"] = 1629, [\"z\"] = 450}, [\"last_death_portal\"] = 1623352332}",
		["stamina:level"] = "14.6",
		punch_count = "3858",
		arenalib_infobox_arenaID = "0",
		inflicted_damage = "50078",
		crafted = "4046",
		played_time = "629074",
		xp = "65738",
		placed_nodes = "33799",
		died = "34",
		hud_state = "on",
		repellant = "0",
		yl_commons_player_created = "1611708658"
	}
}

Log identifier


[MOD] yl_report log identifier = IJMABOusG3iUofHYKfKsV5nDE40EMzJ4

Profiler save:

profile-20210610T221143.json_pretty

Status:

# Server: version=5.4.1-yl, uptime=6288.12, max_lag=5.55876, clients={Julia, BerndB, HALINA, AliasAlreadyTaken, Machtrollo, Oakenshield, gamer15, MessyHawk, amadin-ru, MilesPacis, ElishQa, DeepDweller, Test_User, Boot, Bailiff, mindfrost, whosit, Rex_2000}
MilesPacis reports a bug: > when trying to craft the wood extended crossbrace from the wood crossbrace, the crafting only gives sticks as an option. Player position: ``` { y = 85.5, x = 1526.4901123047, z = 385.69299316406 } ``` Player look: ``` { y = -0.43035355210304, x = 0.85062289237976, z = 0.30205389857292 } ``` Player information: ``` { min_rtt = 0.043000001460314, max_rtt = 1.779000043869, connection_uptime = 4962, max_jitter = 1.2969999313354, minor = 4, major = 5, ip_version = 6, formspec_version = 4, patch = 0, protocol_version = 39, serialization_version = 28, lang_code = "it", version_string = "5.4.0", avg_rtt = 0.045000001788139, state = "Active", avg_jitter = 0.0019999966025352, min_jitter = 0, address = "::ffff:79.50.85.234" } ``` Player meta: ``` { fields = { ["3d_armor_inventory"] = "return {\"3d_armor:helmet_crystal 1 6470\", \"3d_armor:chestplate_diamond 1 18420\", \"3d_armor:boots_crystal 1 9210\", \"shields:shield_gold 1 27630\", \"3d_armor:leggings_gold 1 2460\", \"\"}", yl_commons_thankyou = "5", jointime = "1611708658", yl_commons_player_joined = "1623351058", ["signslib:pos"] = "(1564,-60,377)", digged_nodes = "57166", bitten = "0", partychat = "party", yl_church = "return {[\"last_death\"] = {[\"y\"] = 27, [\"x\"] = 1629, [\"z\"] = 450}, [\"last_death_portal\"] = 1623352332}", ["stamina:level"] = "14.6", punch_count = "3858", arenalib_infobox_arenaID = "0", inflicted_damage = "50078", crafted = "4046", played_time = "629074", xp = "65738", placed_nodes = "33799", died = "34", hud_state = "on", repellant = "0", yl_commons_player_created = "1611708658" } } ``` Log identifier ``` [MOD] yl_report log identifier = IJMABOusG3iUofHYKfKsV5nDE40EMzJ4 ``` Profiler save: ``` profile-20210610T221143.json_pretty ``` Status: ``` # Server: version=5.4.1-yl, uptime=6288.12, max_lag=5.55876, clients={Julia, BerndB, HALINA, AliasAlreadyTaken, Machtrollo, Oakenshield, gamer15, MessyHawk, amadin-ru, MilesPacis, ElishQa, DeepDweller, Test_User, Boot, Bailiff, mindfrost, whosit, Rex_2000} ```
AliasAlreadyTaken was assigned by yourland-report 2021-06-10 20:11:44 +00:00
whosit added the
1. kind/bug
label 2021-06-11 17:50:14 +00:00
Member

This is a conflict of the brace recipie with "group:wood -> stick" recipie.

This is a conflict of the brace recipie with "group:wood -> stick" recipie.
whosit added
3. source/integration
and removed
1. kind/bug
labels 2021-06-11 17:51:43 +00:00

The offensive recipe is in MTG/mods/default/craftitems.lua line 445:

minetest.register_craft({
	output = "default:stick 4",
	recipe = {
		{"group:wood"},
	}
})

Fixed in 6068281371661fe9893eaa9c5f2370331a4b24dd

The offensive recipe is in MTG/mods/default/craftitems.lua line 445: ``` minetest.register_craft({ output = "default:stick 4", recipe = { {"group:wood"}, } }) ``` Fixed in 6068281371661fe9893eaa9c5f2370331a4b24dd
AliasAlreadyTaken added the
1. kind/bug
5. result/fixed
labels 2021-07-17 03:39:15 +00:00
Sign in to join this conversation.
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: your-land/bugtracker#644
No description provided.