Time Nick Message 11:09 MTDiscord is there a way to change the shape of water source? 11:09 MTDiscord or a liquid source 11:37 Cybille its Free to spend Time for Grafics or Programing. I will be greatfull, if you do it for me 11:42 Cybille The Devtest/mods/Mapgen/init.lua and the "basenodes:water_source" was good as Example and Testing base 13:00 MTDiscord ....what 13:23 Cybille minetest-5.4.0-win64\games\devtest\mods\basenodes\textures\default_water_flowing.png was a 16x16pix (16 times = 256pix) Pic register with "minetest.register_node" in dthe basenodes\init.lua 13:26 Cybille 1 (Transparent) Pic with 16 single Pic on Top of each other, that you can change in your own Game or during ChangeRecipie during "a new Mod" 13:28 Cybille Open "minetest-5.4.0-win64\games\minetest_game\mods\default\textures\default_water_source_animated.png" with your "Paint" and change it 13:39 Cybille and if you change minetest-5.4.0-win64\games\minetest_game\mods\default\nodes.lua minetest.register_node("default:water_source" ... walkable = true .... you can walk on Water 15:38 MinetestBot 02[git] 04sfan5 -> 03minetest/minetest: Fix devtest Lua error 13daf862a https://git.io/JOKiI (152021-04-21T14:42:34Z) 18:35 MinetestBot 02[git] 04sfan5 -> 03minetest/minetest: Fix two CMake build issues 133e2145d https://git.io/JO6IT (152021-04-21T18:26:43Z) 18:41 ryvnf yeah. I'm quite sure that was not an issue until recently. So you can always go back to like Mineclone2 version 0.69 and compare what has changed 18:41 ryvnf whops (sorry, wrong channel) 19:43 ar10ch if pointed_thing.type == "object" , then that object can be a player, right? 19:54 calcul0n_ ar10ch, players are entities so i guess yes 19:55 ar10ch so really if pointed_thing:is_player should work also? 20:10 calcul0n_ hmm, not sure it works this way, where this pointed_thing comes from? 20:15 ar10ch more curiosity than anything. experimenting atm. 20:27 sfan5 it'd be pointed_thing.object:is_player() 20:28 sfan5 ah no 20:28 sfan5 it's pointed 20:28 sfan5 pointed_thing.ref:is_player() 20:29 ar10ch ah ok, great - thanks sfan5 and calcul0n