00:06 <@SpicyCebolla> $rcedit shadowrider38 00:06 @SpicyCebolla: https://www.hardfought.org/nethack/rcedit 00:07 <@SpicyCebolla> $score shadowrider38 00:07 @SpicyCebolla: Can't find player shadowrider38 on the scoreboard. 00:07 <@SpicyCebolla> :rip: 01:21 $steak 01:21 $streak 01:21 nabru: No streaks for nabru. 01:32 No steaks for nabru either, it would seem. 01:45 * Umbire emits a steak at nabru 01:45 :D 01:54 meat wand: sprays meatballs at your opponent 01:59 -!- caracasbas has joined #tnnt 02:11 yes plz, nabru 02:11 only as an effect from stone to flesh, ofc 02:12 erm. bouquet i mean 02:12 you're both green ok 02:15 -!- caracasbas has quit [Quit: Client closed] 02:16 You are now more skilled in meat spraying. You_feel you could be more dangerous! 02:16 finally, a good ranged weapon for healers 02:22 -!- caracasbas has joined #tnnt 02:55 -!- caracasbas has left #tnnt 03:30 -!- raisse has joined #tnnt 05:19 -!- cathartes has quit [Quit: sleepy] 08:33 -!- raisse has quit [Ping timeout: 260 seconds] 08:34 -!- raisse has joined #tnnt 08:39 -!- raisse has quit [Ping timeout: 244 seconds] 08:53 -!- raisse has joined #tnnt 09:04 -!- raisse has quit [Ping timeout: 260 seconds] 09:21 -!- fakepass has quit [Quit: Leaving] 09:48 -!- Umbire has quit [Quit: Umbire zaps a wand of digging!] 12:48 -!- bhaak has quit [Ping timeout: 252 seconds] 13:29 -!- HalNovek has joined #tnnt 13:39 -!- Umbire has joined #tnnt 14:15 -!- HalNovek has quit [Quit: Client closed] 14:27 -!- raisse has joined #tnnt 14:34 -!- raisse has quit [Ping timeout: 260 seconds] 14:46 -!- raisse has joined #tnnt 15:22 -!- Umbire has quit [Quit: Umbire zaps a wand of digging!] 16:21 -!- jonathanhanes has joined #tnnt 16:22 -!- jonathanhanes is now known as jonbaneoffrost 18:52 tnnt 18:52 toot 18:52 uoou 18:52 unnethack odd october urnament? 18:53 lol 18:53 spicyCebolla: please help me 18:53 i don't know what to do with my precious last hour before bed time 18:53 every other october, earn urn-themed trophies 18:53 i need inspiration 18:53 Beholder said watch iasip but i don't want to watch iasip 18:53 idk, stretching and chill music? 18:53 move some muscles that don't usually move 18:54 hm 18:54 that sounds far too active 18:54 what if you just turn yer face left and right 18:54 while on the floor listening to something cool 18:55 there's always tidying your dotfiles i guess 18:55 idk kiddo 18:56 just cleaned my fridge 18:56 there's no beet juice *anywhere* 18:56 your ideas all seem pretty great but i remain stuck in decision paralysis, devoid of executive function 18:56 it's pretty wild 19:02 spicyCebolla: pog 19:24 -!- fakepass has joined #tnnt 19:27 <@Shadow_Rider> is there something wrong with the beta rn? 19:27 <@Shadow_Rider> i can't connect on ssh or hterm 19:28 uhhhh 19:28 do you mean you can't connect to ssh at all or waht? 19:29 <@Shadow_Rider> i can login and play other variants 19:29 oic 19:29 <@Shadow_Rider> but when i click t and t it doesn't do anything 19:29 weird 19:31 <@Shadow_Rider> not sure if this is related but i spectated bartlem playing tnnt and theres a bunch of lines saying that there's issues opening the save file 19:31 oh... 19:31 uh K2 when you have a minute i wonder if you can look into this ^ 19:32 huh 19:33 looking 19:33 weird same for me 19:36 well this is odd 19:36 looks like a fresh install 19:36 saves are gone, xlogfile blank, etc 19:37 <@Shadow_Rider> yike 19:41 i see the issue 19:41 one moment 19:48 -!- Grouchy has joined #tnnt 19:49 alright we're back 19:49 sorry bout that folks, my fault 19:49 yay for backups 19:49 woo \o/ 19:51 <@Shadow_Rider> yaya k2 19:51 screwed over existing games though bleh 19:51 backup is from the one that runs every morning at 3am 19:52 i was testing a fix in tnnt and was working in the wrong terminal session 19:52 -!- qt has joined #tnnt 19:55 heya qt 19:56 moving tnnt bug fix discussion here 19:56 aosdict: does create_monster intentionally not do 'mtmp = create_tnnt_npc(x, y)' so that the values of m->paralyzed etc won't be transferred over to the monster? 19:56 added your patch, get this on compile: 19:56 files.c: In function ‘paniclog’: 19:56 files.c:3785:10: warning: unused variable ‘buf’ [-Wunused-variable] 19:56 3785 | char buf[BUFSZ]; 19:56 | ^~~ 19:56 otherwise its fine 19:57 K2: this is probably better https://termbin.com/dgs8 19:58 just move it under that #else 19:58 yup 20:00 the create_monster thing is the reason the portal was segfaulting for me 20:00 it's like this 20:00 struct monst *mtmp; 20:00 it would actually crash? 20:00 if (foo) { 20:00 create_tnnt_npc(x, y); 20:00 } else { 20:00 mtmp = mk_mplayer(pm, x, y, FALSE); 20:00 } 20:00 if (mtmp) { 20:00 x = mtmp->mx, y = mtmp->my; 20:00 } 20:00 yeah 20:01 if it tries to create an npc mtmp isn't defined anywhere 20:01 on my system, it complains but doesnt crash 20:01 makes an mplayer 20:01 the patch i posted changes the declaration to 'struct monst *mtmp = (struct monst *) 0;' so that it will definitely not go into that 'if (mtmp) {' block 20:01 but you could also change the line to 'mtmp = create_tnnt_npc(x, y)' 20:02 cool 20:02 depending on whether or not you want to be able to override whatever initialization create_tnnt_npc does 20:02 if it's intentional that it doesn't use the return value for mtmp, maybe it should cast to void to make that clearer 20:03 [tnnt] k21971 pushed 1 commit to master [+0/-0/±4] https://git.io/JiCzU 20:03 [tnnt] k21971 ed98c2c - Fix: unleash all pets when entering arena portal. 20:04 [tnnt] k21971 pushed 1 commit to master [+0/-0/±4] https://git.io/JiCzm 20:04 [tnnt] k21971 7123c57 - Fix: unleash all pets when entering arena portal. 20:04 ^ ammend to commit notes 20:04 so nice you committed it twice 20:04 amend rather 20:06 thank you spicyCebolla for the bug report 20:07 qt: I figure it's just an omission that mtmp isn't set there 20:07 so fix would be to set mtmp equal to that 20:14 weird that mk_mplayer has that 'special' parameter but immediately overrides it to FALSE if you're not on astral 20:14 it only allows you to specify an mplayer is not 'special' when they otherwise would be, but not vice-versa? 20:16 the only time mplayers are created in vanilla is on astral anyway, I thought 20:16 oh or is Newt an mplayer? 20:34 there are a few instances like that in special levels yeah 20:35 -!- raisse has quit [Ping timeout: 260 seconds] 20:35 also probably good for the code not to assume mplayers only get created on astral 20:37 but why override the parameter passed to the function 20:37 instead of just ensuring the right parameter gets passed in the places it is called 20:38 rn tnnt calls it with special = TRUE if there's no npcfile, but it gets overridden bc it's not astral 22:07 -!- jonbaneoffrost has quit [Ping timeout: 265 seconds] 22:08 -!- Grouchy has quit [Quit: Client closed] 22:10 -!- Grouchy has joined #tnnt 23:32 -!- Grouchy has quit [Quit: Ping timeout (120 seconds)] 23:41 woop 23:52 -!- qt has quit [Ping timeout: 260 seconds]