Time Nick Message 00:16 Megaf_ 21:11:10: ERROR[ServerThread]: ServerEnv: Trying to store id=1354 statically but block (1873,0,1882) already contains 128 objects. Forcing delete. 00:16 Megaf_ The weird thing is, theres no one nor nothing there, only ocean 00:21 kahrl Megaf_: did you look at (29968,0,30112)? 01:40 VanessaE kahrl: I've experienced the same issue. 01:59 pixels http://pastebin.com/5G1cgxym Why am I getting this error and how can I fix it? Both stderr and CMakeOutput.log is included 02:41 jordan4ibanez >So if you double click the outside space of the main menu the game crashes 02:57 VanessaE jordan4ibanez: I can reproduce. 02:58 VanessaE (though I'm not at current git HEAD) 02:59 VanessaE actually it seems to be a clean exit. 02:59 VanessaE not a crash, according to gdb 03:12 Zeno` Yeah that's intended behaviour 03:12 Zeno` https://github.com/minetest/minetest/issues/1642 06:21 sfan5 OldCoder: versions older than 0.4.9 use legacy symlinks IIRC 06:39 Zeno`` well, dat's no good 06:40 Zeno`` now my secret identity is revealed :-o 07:06 Zeno` Is there a problem with using GPL code in an LGPL project? 07:07 Zeno` TriBlade9 ? 07:08 Zeno` TriBlade9, I guess I'm just concerned because of: https://github.com/TriBlade9/minetest/blob/colored_chat/src/ColoredString.h 07:08 Zeno` I don't know if it's an issue or not, though 07:09 Zeno` also StaticText.cpp 07:09 kaeza >GNU Lesser General Public License 07:09 Zeno` err 07:09 Zeno` yes, quite right :) 07:10 Zeno` What made me think GPL? 07:11 Zeno` *shrug* 07:16 Zeno` I do think there should be a comment there though that it's from irrlicht but altered 07:16 Zeno` as per the license: Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 07:17 Zeno` It's not being misrepresented, but it is altered 07:17 Zeno` better safe than sorry probably 07:43 TriBlade9 Zeno`, That's NOT GPL 07:44 TriBlade9 But I was unaware that that was altered Irrlicht, my bad 07:45 Zeno` yes, Kaeza corrected me :) 10:10 kahrl VanessaE: the same issue with weblate or force deleting objects? 11:33 kahrl ignacio: please fix your connection 13:26 OldCoder sfan5, but can versions (clients) older than 0.4.9 even connect to a 0.4.10 server? 13:26 sfan5 OldCoder: I dunno, they probably can 13:27 OldCoder All right. I thought there was a network protocol bump not too long ago. 13:37 RealBadAngel hi guys 13:38 OldCoder RealBadAngel, Moin 13:39 PenguinDad Hej RealBadAngel 13:40 RealBadAngel have you seen digging tweaks pull? 13:46 RealBadAngel sfan5 ? 13:46 sfan5 digging tweaks? no 13:46 RealBadAngel https://github.com/minetest/minetest/pull/1685 13:48 RealBadAngel enable_node_highlighting = true and (or) enable_crack_animations = false 13:49 RealBadAngel highlighting + particles can now handle digging without cracks 13:49 RealBadAngel and imho in a way nicer way ;) 13:58 OldCoder what is up 13:58 OldCoder ? 14:36 kahrl sfan5: yay progress: https://github.com/kahrl/minetest/commits/master 14:41 RealBadAngel weblate gonna be up again? 14:42 kahrl probably 14:42 RealBadAngel good 14:42 RealBadAngel i need to update polish translation 14:51 RealBadAngel kahrl, can you check https://github.com/minetest/minetest/pull/1685 ? 15:00 kahrl sfan5: http://dev.minetest.net/Installing_Weblate if you want to try it 15:01 kahrl (unless you want to wait for the next weblate version, which will support django 1.7 and might fix the email registration issue) 15:01 kahrl RealBadAngel: kinda busy right now 16:30 VanessaE kahrl: re: same issue, that referred to force-deleting, or rather with objects inexplicably multiplying out of control. 18:08 Calinou https://github.com/minetest/minetest_game/pull/321 18:12 Calinou connected glass/obsidian glass, 3D dropped glass 18:30 CraigyDavi` Found a really bad bug. If you type "%" into the chat onto a server it causes it to crash. 18:30 CraigyDavi` Or maybe it's just my server which does that... 18:31 CraigyDavi` There's no error message though 18:47 kahrl CraigyDavi`: doesn't happen in singleplayer 18:47 CraigyDavi` Tried it on multiplayer? 18:47 kahrl do you have any chat-related mods on your server? 18:48 kahrl well, I don't want to randomly crash other people's servers 18:49 CraigyDavi` Nothing except this: https://github.com/CraigyDavi/Craig-Server_game/blob/master/mods/_misc/chatlog.lua 18:49 CraigyDavi` Just creates a chatlog.txt file in the word directory 18:50 kahrl CraigyDavi`: well os.date does interpret % sequences so that might be it right there 18:51 CraigyDavi` Ah I see, maybe that's the problem 18:51 kahrl try f:write(os.date("(%m/%d/%y %X) [")..name.."]: "..msg.."\n") 18:53 CraigyDavi` Ok will do 21:55 RealBadAngel ShadowNinja, number of cracks in textures are not hardcoded, it is only scaled internally to 16 steps 22:02 ShadowNinja RealBadAngel: I mean it's hardcoded to 16 steps. 22:02 RealBadAngel progression = core::round32((progression / 16.0) * crack_count); 22:03 RealBadAngel crack_count is number of steps in texture 22:05 RealBadAngel and crack_animation_length is not anymore just for crack textures but for highlighting too 22:06 RealBadAngel highlighting gets more transparent to show crack progress 22:06 RealBadAngel and this cannot be controlled by texture 22:08 casimir By the way. The highlighting does highlight the node at 0,0,0 when noting else is pointed at. 22:09 RealBadAngel oops :) 22:42 RealBadAngel casimir, thx for reporting, fixed that 23:50 RealBadAngel ShadowNinja, here?