Time Nick Message 17:20 MinetestBot 02[git] 04SmallJoker -> 03minetest/minetest: Send cumulated inventory changes only each step (#8856) 13fae6242 https://git.io/JeqaD (152019-09-09T17:19:54Z) 17:20 MinetestBot 02[git] 04script@mt -> 03minetest/minetest: Update minetest.conf.example 13a57f951 https://git.io/Jeqay (152019-09-09T17:18:30Z) 17:20 MinetestBot 02[git] 04script@mt -> 03minetest/minetest: Update translation strings 13ae92bbe https://git.io/JeqaS (152019-09-09T17:18:30Z) 17:20 MinetestBot 02[git] 04translators@weblate -> 03minetest/minetest: Update from Weblate 130f758a1 https://git.io/Jeqa9 (152019-09-09T17:18:30Z) 18:46 MinetestBot 02[git] 04SmallJoker -> 03minetest/minetest: InventoryManager: Fix virtual function overload warning 13720aedb https://git.io/JeqwN (152019-09-09T18:35:45Z) 19:42 aldenp hello, this is a dumb question but how might I access fields from another mod in my own? 19:43 aldenp ie I have an optional dependency 19:43 sfan5 "fields"? 19:43 aldenp I suppose that's not the name lua uses 19:43 aldenp variables 19:44 sfan5 if the variables happen to be global you can access them like any other variable 19:44 sfan5 if not then you can't 19:44 aldenp huh 19:45 aldenp ah I see, thanks, I just accidentally set a variable to local lol 19:45 rubenwardy you should only define a global with the same name as your mod, aldenp 19:46 aldenp yeah, that's what I've done 19:46 rubenwardy typically that variable is a table which contains other values 19:46 rubenwardy mymod.x 19:46 aldenp yeah, I have a `factions` table which contains all the mod's functions 19:46 Krock mAkE iT An uSeRDaTa 19:47 Krock mEtaTAblEs 19:47 Krock my mod's namespace is _G 19:48 aldenp that's actually cursed 19:48 Krock (_G = global variables) 20:05 aldenp would anybody be willing to review my (honestly pretty terrible) mod? it's still a work in progress but I'd love some feedback 20:06 Krock not today but you could put it into the freenode memo, forum PM or @mention in the issue tracker 20:06 Krock it = my nick 20:07 Krock or whatever. tired 20:07 aldenp freenode memo? what's that? 20:07 Krock see /msg memoserv help 20:07 Krock needs a registered account 20:07 aldenp oh, that's neat, I wish I knew about this earlier 21:27 Sketch2 is there a reason the Security certificate isn't being recognized on Minetest.Net 21:27 Sketch2 https://imgur.com/ueFBTMl 21:28 rubenwardy Sketch2: the root domain is malformed, but www.minetest.net works 21:28 Sketch2 ok, ty 21:28 aldenp shouldn't the root domain redirect to www? 21:29 Sketch2 think it likely used to, but Firefox dropped that "feature" 21:29 Sketch2 because too many users complaied about going to websites that don't use that prefix 21:29 Sketch2 I'm on Firefox 70 Beta v4 21:30 aldenp it doesn't seem like a firefox thing, the server should be listening on the root domain and sending a 302 to redirect to the main page 21:30 Sketch2 so it'll roll out to others in the near future 21:30 Sketch2 oh, the server. thought you meant the browser 21:30 sfan5 I thought this bug with the website was fixed already 21:30 aldenp yeah 21:31 aldenp it seems over HTTP nginx *does* send a 301 to the www domain, and over HTTPS it attempts to but uses an invalid certificate, causing the error screenshotted above 21:31 aldenp is the www server different from the server handling requests to the root domain? it seems odd that they'd be using different configs 21:32 aldenp or at least, different certificates 21:32 aldenp oh I see, they are different servers 21:32 aldenp I wonder why that is? 21:33 sfan5 you can't set a cname on the root domain, so the root domain can't be handeled by github pages 21:33 aldenp oh, the site uses github pages, huh 21:34 rubenwardy not true, http://rubenwardy.com was hosted directly by github pages for a long while 21:35 rubenwardy you just needed to use an A record 21:38 sfan5 well whatever 21:38 sfan5 even if github offers the option (now) nobody has fixed the config yet 21:52 aldenp hey so is there any reason why I'm not seeing print statements in console 21:52 aldenp wait oh my god I'm stupid 21:52 aldenp nvm 21:52 aldenp I was checking the client logs :P