00:48:44 -!- amalloy_ is now known as amalloy 01:18:30 +ebering | Webtiles output is done via the javascript found in webserver/ <-- i think Bcadren means the code in crawl which outputs json 01:37:06 Unstable branch on crawl.develz.org updated to: 0.25-a0-36-g303dd5b (34) 02:08:37 Windows builds of master branch on crawl.develz.org updated to: 0.25-a0-36-g303dd5b 02:24:18 03kitchen-ace02 {Aidan Holm} 07* 0.25-a0-37-g8155909: Prevent torment from killing spriggan riders 10(6 hours ago, 1 file, 2+ 1-) 13https://github.com/crawl/crawl/commit/8155909c3ec9 02:25:01 03kitchen-ace02 {Aidan Holm} 07* 0.25-a0-38-g099c3e1: Draw shields on deep elf knights 10(13 hours ago, 1 file, 1+ 0-) 13https://github.com/crawl/crawl/commit/099c3e10fadf 02:32:43 Unstable branch on crawl.kelbi.org updated to: 0.25-a0-38-g099c3e10fa (34) 02:35:42 03kitchen-ace02 {Aidan Holm} 07[stone_soup-0.24] * 0.24-b1-26-g8ceb4f9: Prevent torment from killing spriggan riders 10(6 hours ago, 1 file, 2+ 1-) 13https://github.com/crawl/crawl/commit/8ceb4f952b46 02:35:42 03kitchen-ace02 {Aidan Holm} 07[stone_soup-0.24] * 0.24-b1-27-g4fdf8e6: Draw shields on deep elf knights 10(13 hours ago, 1 file, 1+ 0-) 13https://github.com/crawl/crawl/commit/4fdf8e6efa2a 02:59:07 Monster database of master branch on crawl.develz.org updated to: 0.24-a0-443-g80245de 03:11:58 Unstable branch on crawl.beRotato.org updated to: 0.25-a0-38-g099c3e1 (34) 03:31:00 Fork (bcrawl) on crawl.kelbi.org updated to: 0.23-a0-2634-gb4598b3726 03:39:48 Fork (bcadrencrawl) on crawl.kelbi.org updated to: 0.22.1-149-g30e53d4ec8 04:34:09 -!- Amnesiac_ is now known as Amnesiac 09:56:54 03theJollySin02 07https://github.com/crawl/crawl/pull/1185 * 0.25-a0-36-g53560c2: Fix Sceptre of Torment inconsistency (12093) 10(3 days ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/53560c2afdef 09:56:54 03theJollySin02 07https://github.com/crawl/crawl/pull/1185 * 0.25-a0-37-ga63520f: Adjust barehanded attack prompt wording (11907) 10(3 days ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/a63520f58a3c 09:57:22 Hello. I would like to understand if I have a bug, if it is expected behavior or if I am doing something wrong. I am trying to understand the lua crawl.stderr("") behavior on windows and on linux. 09:57:35 With an init file that is simply this : 09:57:36 { 09:58:05 This command outputs 'Test" every time I am ready() in linux 09:58:06 crawl-tiles -rc "init.txt" 2>&1 | tee -a "log.txt" 09:58:29 and this does the same thing on windows (see on console) 09:58:30 C:\Users\ericm\DCSS\crawl-console.exe -rc "init.txt" > log.txt 2>&1 09:58:44 but it does not output to log.txt on tiles 09:58:49 C:\Users\ericm\DCSS\crawl-tiles.exe -rc "init.txt" > log.txt 2>&1 09:59:33 the last one outputs to the CMD window, but not log.txt 10:33:49 03theJollySin02 {Aidan Holm} 07* 0.25-a0-39-g710a5d0: Fix Sceptre of Torment inconsistency (12093) 10(3 days ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/710a5d024973 10:33:49 03theJollySin02 {Aidan Holm} 07* 0.25-a0-40-g883716c: Adjust barehanded attack prompt wording (11907) 10(3 days ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/883716c04b0c 10:36:38 exadrid: I'm not familiar with windows console but I kno't know that CMD hass the same file redirects 10:47:39 Unstable branch on crawl.kelbi.org updated to: 0.25-a0-40-g883716c04b (34) 10:51:18 ebering, cmd.exe has mostly bourne-shell-like redirects since winnt 10:51:30 I think it's missing >& and friends 10:53:31 * geekosaur remembers he needs to update the windows vm, whoops 10:55:38 ok, it has 2>&1 but not the exec 5>... type thing to open new handles or exec 5<&- to close them 10:55:38 https://ss64.com/nt/syntax-redirection.html 11:10:04 geekosaur do you mean my command is missing that or is cmd.exe missing that? 11:11:15 cmd.exe doesn't support those particular things. yours probably doesn'tneed them, they're somewhat advanced usage 11:11:55 Yeah, ok 11:12:12 because the command works for the crawl console 11:12:17 but not for crawl tiles 11:17:10 tiles ... redirection? oh, errors and such? I think it has to open a separate console in some sense, so can't be redirected from command line 11:17:19 windows is somewhat odd about mixed gui and console 11:17:36 it "kills" the original console connection when the gui is initialized 11:18:14 but it currently prints in command line 11:18:48 the "test" gets printed in the console (for both windows and linux), but windows refuses to redirect it to file 11:19:14 it's as if it's not a true stderr (e.g. numeric handle 2) 11:20:10 maybe try 2> instead of > 11:20:11 https://support.microsoft.com/en-ca/help/110930/redirecting-error-messages-from-command-prompt-stderr-stdout 11:20:49 right, but it makes a separate console connection which isn't subject to the original one's redirection, iirc 11:20:52 or 1> if you're using 2>&1 11:21:06 because the original one is lost when the gui is initialized by WinMain 11:21:55 ah, yeah I think that's right 11:22:04 so redirection may not really be possible 11:22:33 advil I tried it, does not work. 11:22:49 I see... the redirect does not work, but it still prints in the original window? 11:23:01 would there be a way to send to file anything that is printed in the cmd 11:23:03 correct, because the same window is used but the console "device" is different 11:23:16 windows thinks about these differently than unix does 11:24:25 I don't think so aside from anything in the alt-Fn menu (menu on the app icon in the titlebar; may have a log option) 11:24:44 * geekosaur is enduring reboots as everything starting with vmware updates, so can't check, sigh 11:26:18 exadrid: can you say more about what your larger goals are? 11:26:51 Stable (0.23) branch on underhound.eu updated to: 0.23.1-89-g277498a001 11:28:47 currently on linux I have a bot that play (in a very preliminary way) crawl from python (as a fun project that does similar to this : https://github.com/elliptic/qw/blob/master/qw.rchttps://github.com/elliptic/qw/blob/master/qw.rc 11:28:54 oops : https://github.com/elliptic/qw/blob/master/qw.rc 11:29:24 to get information from the game I use the stderr 11:29:40 since I am not using lua 11:30:31 I suspect you'll be fighting Windows all the way here 11:31:17 Indeed, that does seem to be the way 11:32:30 ah...yeah I'm not sure that windows stderr is going to deliver what you want exactly, without modifying how crawl handles it. (The simplest might be just to change the crawl source code to write to a file directly.) 11:32:55 yeah, but then I would be the only one that could ever use that program 11:32:57 shafted in explored area on D1 13https://crawl.develz.org/mantis/view.php?id=12102 by Leo_Littlebook 11:33:19 are you trying to get it to work on windows so that you can develop on windows? 11:34:09 well, building crawl isn't too hard, but yeah that would impose an additional barrier 11:35:05 I use windows as my main operating system 11:35:15 and it is sometimes annoying to switch between both 11:35:18 if it's just for you you could try WSL 11:35:45 wsl? 11:36:10 Oh, that windows/linux thing 11:36:24 windows subsystem for linux, it'll give you much more unix-like behavior and (supposedly) crawl builds just fine 11:36:50 that might be the solution 11:37:38 what is it that is getting printed to stderr? is it from lua code or something? 11:38:42 here is my RC 11:38:42 https://pastebin.com/T9HYNch6 11:39:09 Again, fairly preliminary but it's just to shove stuff to log that I can interpret in python 11:39:12 a patch that adds stderr doubling to a file on windows might be reasonable to merge, given that it is otherwise impossible 11:39:35 Is there a way to cause Wizmode to produce a player ghost/bones file? 12:22:38 -!- amalloy is now known as amalloy_ 13:05:36 ??tourney 13:05:36 johnstein: You have 3 messages. Use !messages to read them. 13:05:36 tournament[1/3]: The 0.23 tournament will run from 20:00 UTC Friday 8 February 2019 to 20:00 UTC Sunday 24 February 2019. Tournament home page: https://crawl.develz.org/tournament/0.23/ 13:05:51 Unstable branch on crawl.akrasiac.org updated to: 0.25-a0-40-g883716c (34) 13:09:10 I guess I need to update the server soon? is it ready now? 13:13:44 03theJollySin02 {Aidan Holm} 07[stone_soup-0.24] * 0.24-b1-28-g2ded09c: Fix Sceptre of Torment inconsistency (12093) 10(3 days ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/2ded09cb5a92 13:13:44 03theJollySin02 {Aidan Holm} 07[stone_soup-0.24] * 0.24-b1-29-g1207306: Adjust barehanded attack prompt wording (11907) 10(3 days ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/1207306da544 13:56:19 03Aidan Holm02 07* 0.25-a0-41-g6cf4ce5: Fix formatted_scroller more text alignment 10(12 minutes ago, 1 file, 7+ 4-) 13https://github.com/crawl/crawl/commit/6cf4ce537d56 13:57:02 03Aidan Holm02 07[stone_soup-0.24] * 0.24-b1-30-g840c9ef: Fix formatted_scroller more text alignment 10(13 minutes ago, 1 file, 7+ 4-) 13https://github.com/crawl/crawl/commit/840c9efd86b1 14:02:46 Unstable branch on crawl.kelbi.org updated to: 0.25-a0-41-g6cf4ce537d (34) 14:15:16 hi, I wanted to confirm that it's intentional that flayed ghosts affect players in tree form 14:15:35 judging by the description of Flay, it looks like it is. 14:15:52 I was thinking this doesn't make sense, but I guess you could flay a tree, so OK? 15:09:11 I'm not sure if it's like deeply thought out, but I think it's probably intentional 15:09:24 since trees are alive 15:09:33 the flavor for flay isn't really literally having their skin removed 15:10:55 "You are covered in illusionary wounds, causing severe damage while the effect remains active" 15:11:53 johnstein: the stone_soup-0.24 branch is tagged, so you could probably do it any time...but 0.24 is not released yet 15:45:17 ok thanks. I won't make a patch to change it, then. 18:09:39 Typo in message for when you lose MP-powered wands mutation 13https://crawl.develz.org/mantis/view.php?id=12103 by Flugkiller 18:23:02 Unstable branch on underhound.eu updated to: 0.25-a0-41-g6cf4ce537d (34) 18:24:54 -!- amalloy_ is now known as amalloy