Time Nick Message 18:39 Krock rebasing #8680 18:40 ShadowBot https://github.com/minetest/minetest/issues/8680 -- Formspec: Add HTML-like element by kilbith 21:31 Andrey01 Hello 21:36 Andrey01 Just of curiosity: why is CONTENTFEATURES_VERSION in nodedef.h declared as a static constant, if it` already static default? 21:36 Andrey01 And also what`s 'u8' datatype? 21:37 Andrey01 On the same line 21:38 sfan5 u8 is an unsigned integer with 8 bits 21:43 Andrey01 I know there`s uint8_t type that is declared in cstdlib. It has also 8 bits. But I think it`s not the same? 21:44 Andrey01 In cstdint 21:44 Andrey01 I just mistook 21:47 sfan5 Minetest uses typedefs to alias common types like that to shorter names 21:48 sfan5 it would not matter anyway, uint8_t is also an unsigned integer with 8 bits