[fixed] My hand gets dropped!

Post Reply
User avatar
theFox
Member
Posts: 192
Joined: Sun Feb 12, 2017 14:08
GitHub: theFox6
In-game: theFox
Location: Germany

[fixed] My hand gets dropped!

by theFox » Post

Sometimes when I drop an item my hand gets dropped too.
With item_drop mod the hand item flies inside me but I can only collect it by punching it.
Last edited by theFox on Fri Jul 20, 2018 07:07, edited 2 times in total.
my mods and subgames (ง'̀-'́)ง

User avatar
Wuzzy
Member
Posts: 4803
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy
Contact:

Re: My hand gets dropped!

by Wuzzy » Post

Hahaha, it happened to me 1 or 2 times while I developed MineClone 2. Hilarious bug.

I have no idea what caused it and it never happened again (maybe I fixed it in my subgame).

Your problem sounds like there is a bug in the item_drop mod, maybe you should complain to the mod author.

User avatar
GreenXenith
Member
Posts: 1356
Joined: Wed Oct 28, 2015 01:26
GitHub: GreenXenith
Location: UTC-8:00
Contact:

Re: My hand gets dropped!

by GreenXenith » Post

This happens a lot on HOMETOWN. Like seriously, all the time. And we don't have that mod.
YouTube | Mods | Patreon | Minetest Discord @greenxenith

You should not be able to read this message.

User avatar
Wuzzy
Member
Posts: 4803
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy
Contact:

Re: My hand gets dropped!

by Wuzzy » Post

You should talk to the HOMETOWN admin(s) and check the list of mods.

User avatar
ExeterDad
Member
Posts: 1717
Joined: Sun Jun 01, 2014 20:00
In-game: ExeterDad
Location: New Hampshire U.S.A

Re: My hand gets dropped!

by ExeterDad » Post

Wuzzy wrote:You should talk to the HOMETOWN admin(s) and check the list of mods.
We don't have any mods that drop items for the most part. If you try to kill someone within the jail area your tool is dropped. Or if someone takes a whack at the main admin (IOKA) the tool is dropped. But there's been hands reported all over the place and never near the jail or IOKA. So it's a funny mystery. :P

User avatar
v-rob
Developer
Posts: 971
Joined: Thu Mar 24, 2016 03:19
GitHub: v-rob
IRC: v-rob
Location: Right behind you.

Re: My hand gets dropped!

by v-rob » Post

I've had it happen before, but only when I had the factory mod enabled (new or old) It appeared right after I dropped another item on the conveyor belt. Just disappears when picked up.

Screenshot:
Image
Core Developer | My Best Mods: Bridger - Slats - Stained Glass

John_Constructor
Member
Posts: 76
Joined: Thu Jun 01, 2017 20:06
GitHub: John-Constructor
In-game: Nooberton
Location: On Minetest 24/7

Re: My hand gets dropped!

by John_Constructor » Post

This happened to me as well, however only with the Factory mod, similar to V-Rob's situation.
Constructing mechs and wingless aircraft since 2016.

User avatar
Linuxdirk
Member
Posts: 3219
Joined: Wed Sep 17, 2014 11:21
In-game: Linuxdirk
Location: Germany
Contact:

Re: My hand gets dropped!

by Linuxdirk » Post

Oh god, please let this become a meme like "An Enderman stole my tree" a few years ago in that one Minecraft forum :)

On the other hand (haha *g*): I can not confirm this issue in 0.4.16 with our without the item_drop mod.

User avatar
kingoscargames
Member
Posts: 216
Joined: Fri Jul 28, 2017 12:06
GitHub: kingoscargames
In-game: kingoscargames
Location: Netherlands

Re: My hand gets dropped!

by kingoscargames » Post

After blowing up more than 5000 tnt and then restarting,there were like 50 hands on the ground (i would show a screenshot but im on mobile right now).

User avatar
azekill_DIABLO
Member
Posts: 7507
Joined: Wed Oct 29, 2014 20:05
GitHub: azekillDIABLO
In-game: azekill_DIABLO
Location: OMICRON
Contact:

Re: My hand gets dropped!

by azekill_DIABLO » Post

xD happens with unloded nodes blowed up. it's funny!
Gone, but not dead. Contact me on discord: azekill_DIABLO#6565
DMs are always open if you want to get in touch!

User avatar
Andrey01
Member
Posts: 2577
Joined: Wed Oct 19, 2016 15:18
GitHub: Andrey2470T
In-game: Andrey01
Location: Russia, Moscow

Re: My hand gets dropped!

by Andrey01 » Post

Player hand can not be dropped as it is not registered as an item.

User avatar
v-rob
Developer
Posts: 971
Joined: Thu Mar 24, 2016 03:19
GitHub: v-rob
IRC: v-rob
Location: Right behind you.

Re: My hand gets dropped!

by v-rob » Post

Well...

From default tools.lua:

Code: Select all

minetest.register_item(":", {
	type = "none",
	wield_image = "wieldhand.png",
	wield_scale = {x=1,y=1,z=2.5},
	tool_capabilities = {
		full_punch_interval = 0.9,
		max_drop_level = 0,
		groupcaps = {
			crumbly = {times={[2]=3.00, [3]=0.70}, uses=0, maxlevel=1},
			snappy = {times={[3]=0.40}, uses=0, maxlevel=1},
			oddly_breakable_by_hand = {times={[1]=3.50,[2]=2.00,[3]=0.70}, uses=0}
		},
		damage_groups = {fleshy=1},
	}
})
I don't want to delve into it, but I believe it is also registered in builtin
Core Developer | My Best Mods: Bridger - Slats - Stained Glass

User avatar
theFox
Member
Posts: 192
Joined: Sun Feb 12, 2017 14:08
GitHub: theFox6
In-game: theFox
Location: Germany

Re: My hand gets dropped!

by theFox » Post

v-rob wrote:I don't want to delve into it, but I believe it is also registered in builtin
Everything in minetest is registered even empty space as "air" node.
my mods and subgames (ง'̀-'́)ง

User avatar
LRV
Helper
Posts: 378
Joined: Mon Dec 19, 2016 17:29
GitHub: Mooncarguy
In-game: Mooncarman Mooncarguy

Re: My hand gets dropped!

by LRV » Post

On Lejo's Skyblock it happens all teh ntime at the resource spawner all few resources a hand spawns.
This is a cool signature. :)

User avatar
TechNolaByte
Member
Posts: 465
Joined: Wed May 10, 2017 21:00
GitHub: TechNolaByte

Re: My hand gets dropped!

by TechNolaByte » Post

this happens when ever an item is getting moved, teleported, or just modified by a mod

this can easily be replicated simply by having item drops and causing the game to crash in such a way it doesn't save the item drops after logging back in all the drops will be "hands" but actually the default no texture entity used by many mods including the item drop built into the engine itself

I used to use a mod that I can no longer find nor know the name of but every 10 or so blocks you broke a block mob would spawn it would have a texture blank aka the "hand" texture and whatever block it stood on it would take that texture if it was in air it had the "hand" texture again.
it was set to use the texture of whatever it stood on and if it wasn't standing on anything was set to blank texture rendering once again "hand" texture

I know all this cause I crash a lot with the error fatal error giving no description and saving no mods data(like hudbars) causing all item drops to lose their metadata turning into "hands"
The great quest of alchemy neither failed nor attained gold; programmers are those great alchemists who transmute caffeine into code.

Post Reply

Who is online

Users browsing this forum: No registered users and 4 guests