diff options
author | Kahrl <kahrl@gmx.net> | 2012-01-22 14:55:55 +0100 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-01-22 17:31:20 +0200 |
commit | c241902b4085573477c996bbcdacaed2d293b38c (patch) | |
tree | 080cd28a8def6d20f564717ea4222c11d88c467c /src/mapnode.h | |
parent | 4799a8f7619b1aad6f9f0c977849be81f17a3672 (diff) | |
download | minetest-c241902b4085573477c996bbcdacaed2d293b38c.tar.gz minetest-c241902b4085573477c996bbcdacaed2d293b38c.tar.bz2 minetest-c241902b4085573477c996bbcdacaed2d293b38c.zip |
Cleanup (some stuff went wrong when reverting 4-byte mapnodes); fix legacy_wallmounted
Diffstat (limited to 'src/mapnode.h')
-rw-r--r-- | src/mapnode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapnode.h b/src/mapnode.h index 1c75f39c5..5e066604b 100644 --- a/src/mapnode.h +++ b/src/mapnode.h @@ -112,7 +112,7 @@ struct MapNode { param1 = a_param1; param2 = a_param2; - // Set content (param0 and param2&0xf0)) after other params + // Set content (param0 and (param2&0xf0)) after other params // because this needs to override part of param2 setContent(content); } |