00:15:57 !tell MainiacJoe in crawl-ref/INSTALL.md all the dependencies are listed. you need to install both sets of dependencies if you want to build tiles, or just the first set if you want to build console 00:15:57 spicycebolla: OK, I'll let mainiacjoe know. 00:17:37 !tell MainiacJoe fun fact: ages ago, i wanted to build tiles on ubuntu, so i only installed the second set of dependencies, and slowly lost my grip on reality trying to figure out what i'd done wrong. years passed. i did the same thing. only after a night or two of sleep did i remember my first failure 00:17:37 spicycebolla: OK, I'll let mainiacjoe know. 02:49:28 Unstable branch on cbro.berotato.org updated to: 0.27-a0-860-gaf99fae3ca (34) 03:30:46 Fork (bcrawl) on crawl.kelbi.org updated to: 0.23-a0-4116-g4a9585b5cb 04:07:31 03gammafunk02 07* 0.27-a0-861-g9529aa9: Reorganize and fix up Spider and Swamp DES 10(2 hours ago, 2 files, 282+ 275-) 13https://github.com/crawl/crawl/commit/9529aa9bf335 05:15:34 -!- amalloy is now known as amalloy_ 06:01:45 Unstable branch on crawl.kelbi.org updated to: 0.27-a0-861-g9529aa9bf3 (34) 08:14:23 I did run the two command on lines 76-2 of INSTALL.md, if that is what spicycebolla is referring to, and still had to track down the four mentioned above manually. Though I didn't think to go back and look in those lines for package names 08:14:23 MainiacJoe: You have 3 messages. Use !messages to read them. 08:15:51 !messages 08:15:51 (1/3) ebering said (7w 2d 19h 49m 48s ago): on the gameplay side, unrand reworks are good small projects 08:16:14 !messages 08:16:15 (1/2) spicycebolla said (8h 17s ago): in crawl-ref/INSTALL.md all the dependencies are listed. you need to install both sets of dependencies if you want to build tiles, or just the first set if you want to build console 08:16:20 !messages 08:16:21 (1/1) spicycebolla said (7h 58m 44s ago): fun fact: ages ago, i wanted to build tiles on ubuntu, so i only installed the second set of dependencies, and slowly lost my grip on reality trying to figure out what i'd done wrong. years passed. i did the same thing. only after a night or two of sleep did i remember my first failure 08:19:58 !tell ebering A small project I had in mind is a feature I've wanted personally. When setting a new Help ancestor identity, I've wished to have a new random name generated. I've thought that the best way to do this is to make a new bool option ancestor_random_prompt or similar, and if true, instead of giving the current name to edit, giving a newly generated random name to edit. This would be the cleanest interface for people 08:19:59 Maximum message length is 340 characters, but you had 418. Eschew verbosity, Gladys! 11:14:17 HuxianSachi (L24 DsWz) Crash caused by signal #6: Aborted (Slime:1) 11:25:04 https://dpaste.org/UMss <-- i tried making it so that undead_or_demonic checks if your species adjective is demonic, but it doesn't like the type comparison. should i do a static cast? i haven't done many of those yet, they make me leery. 11:29:57 <03w​heals> species::name is a function, you need to call it with you.species (or rather, just "species", because this is inside a player member method) and SPECIES_ADJ as the arguments 11:31:31 New branch created: pull/1864 (1 commit) 13https://github.com/crawl/crawl/pull/1864 11:31:31 03sdynet02 07https://github.com/crawl/crawl/pull/1864 * 0.27-a0-862-ge0e2891: Simplify the foxfire, And replace foxfire card with swarms card 10(2 minutes ago, 3 files, 11+ 41-) 13https://github.com/crawl/crawl/commit/e0e289199c75 12:18:31 nojaa (L26 FoCK) Crash caused by signal #6: Aborted (D (Sprint)) 12:43:26 took me embarrasingly long to get the syntax right! return undead_state(temp) || species::name(species, SPNAME_ADJ) == "Demonic"; 12:43:29 but it totally works. 12:43:49 maybe a spf_demonic would be better after all 12:44:11 each of the kinds of undead state is equally single-use after all! 12:57:16 nojaa (L27 FoCK) Crash caused by signal #6: Aborted (D (Sprint)) 13:06:38 Unstable branch on crawl.akrasiac.org updated to: 0.27-a0-861-g9529aa9 (34) 13:11:01 <12e​bering> @gammafunk more vault looksees: https://github.com/ebering/crawl/commit/f0c4988b0ca09d8a2036c774bf374e7fb2a98061 13:11:05 <12e​bering> much less certain about this than the ecumenical stuff 13:11:29 <12e​bering> but I would like to see tyrants appearing more in the end vaults for snake 13:11:37 <12e​bering> just don't have a good sense of the implementation 13:11:51 <12e​bering> (some new snake vaults focusing on them could also work) 13:14:22 nojaa (L27 FoCK) Crash caused by signal #6: Aborted (D (Sprint)) 13:14:52 <12e​bering> !crashlog 13:14:54 <04C​erebot> 23551. HuxianSachi, XL24 DsWz, T:53676 (milestone): https://cbro.berotato.org/morgue/HuxianSachi/crash-HuxianSachi-20210401-151356.txt 13:15:03 <12e​bering> !crashlog sprint 13:15:04 <04C​erebot> 1. sprint, XL21 CeHu, T:51753 (milestone): http://crawl.akrasiac.org/rawdata/sprint/crash-sprint-20190203-215150.txt 13:15:12 <12e​bering> !crashlog nojaa 13:15:13 <04C​erebot> 1. nojaa, XL18 HOFi, T:38093 (milestone): https://underhound.eu/crawl/morgue/nojaa/crash-nojaa-20200707-175737.txt 13:15:26 <12e​bering> hm 13:16:01 <09g​ammafunk> will take a look 13:18:12 spicycebolla a flag or something would be better than checking the adjective I think, though a function in the species namespace that simply checks for SP_DEMONIC would also be fine 13:18:37 checking the adjective is non-ideal in the sense that if someone ever changes the adjective (e.g. by accident), the compiler wouldn't notice 13:19:04 which is why I only did it for flavor things, and I'm still not sure that was the right move there 13:20:23 there shouldn't be any single use species flags though right now, I removed them all 13:23:58 (only semi undead is single-use) 13:24:00 nojaa (L26 FoCK) Crash caused by signal #6: Aborted (D (Sprint)) 13:37:14 thanks, is SP_DEMONIC like, general-use, it'll match anything? i don't see anything that uses that currently 13:40:13 <08n​icolae> snake vaults with tyrants, you ask 🤔 13:40:39 my angle is i'm trying to re-revive imps and i don't like explicitly putting SP_IMP in all the "is it evil"? spots in player.cc 13:40:46 <12e​bering> yes 13:40:53 <12e​bering> and mystics! 13:40:58 <08n​icolae> and mystics... 13:41:01 <08n​icolae> i think i can manage that 13:41:03 <03w​heals> !crashlog nojaa sprint 13:41:04 <04C​erebot> 4. nojaa, XL26 FoCK, T:10249 (milestone): https://underhound.eu/crawl/morgue/nojaa/crash-nojaa-20210401-172359.txt 13:41:15 <12e​bering> really a few lava-esque rune vaults 13:41:36 <08n​icolae> i have a lava non-rune snake vault with salamanders in 'em, i suppose i could make a lava rune vault too 13:41:58 <12e​bering> there's already one and I stuck a bunch of tyrants in it 13:41:59 <03w​heals> that's a lot of waiting 13:42:13 <12e​bering> I think they're xomscumming sprint?! 14:09:23 kindastoned (L23 GrBe) Crash caused by signal #6: Aborted (Depths:5) 14:09:23 jorn (L11 OpTm) Crash caused by signal #6: Aborted (D:8) 14:09:23 Nybble (L24 DrTm) Crash caused by signal #6: Aborted (Vaults:4) 14:09:23 physeK (L15 TrFi) Crash caused by signal #6: Aborted (D:14) 14:09:23 oryxwild (L4 SpEn) Crash caused by signal #6: Aborted (D:3) 14:09:23 demongund (L1 TrMo) Crash caused by signal #6: Aborted (D:1) 14:09:23 TextDrugs (L10 HaHu) Crash caused by signal #6: Aborted (D:8) 14:09:23 Xryugk (L14 TeGl) Crash caused by signal #6: Aborted (Lair:6) 14:09:33 !lm demongund -log 14:09:34 1424. demongund, XL1 TrMo, T:46 (milestone): http://crawl.akrasiac.org/rawdata/demongund/crash-demongund-20210401-180921.txt 14:09:44 CAO having a Moment? 14:09:46 jorn (L11 OpTm) Crash caused by signal #6: Aborted (D:8) 14:09:46 Nybble (L23 DrTm) Crash caused by signal #6: Aborted (Vaults:4) 14:10:18 thejoob (L24 OgDe) Crash caused by signal #6: Aborted (Depths:5) 14:10:27 Xryugk (L14 TeGl) Crash caused by signal #6: Aborted (Lair:6) 14:10:31 TheAlmightyOne (L2 DEHu) Crash caused by signal #6: Aborted (D:1) 14:10:40 shittywizard (L11 DsVM) Crash caused by signal #6: Aborted (Lair:1) 14:10:51 RabbitFromHell (L4 DECj) Crash caused by signal #6: Aborted (D:2) 14:11:04 Nybble (L23 DrTm) Crash caused by signal #6: Aborted (Vaults:4) 14:11:15 ArbitUH (L15 DjWn) Crash caused by signal #6: Aborted (Orc:2) 14:11:18 mmoncure (L11 VSFi) Crash caused by signal #15: Terminated (D:10) 14:11:27 jorn (L11 OpTm) Crash caused by signal #6: Aborted (D:8) 14:11:31 kromel (L6 HaHu) Crash caused by signal #6: Aborted (D:4) 14:11:36 swap (L21 MuVM) Crash caused by signal #6: Aborted (Depths:1) 14:11:36 horredgrones (L23 DsNe) Crash caused by signal #6: Aborted (Depths:3) 14:12:34 Xryugk (L14 TeGl) Crash caused by signal #6: Aborted (Lair:6) 14:12:39 thejoob (L24 OgDe) Crash caused by signal #6: Aborted (Depths:5) 14:13:11 advil CAO disk is still ok 14:13:15 physeK (L15 TrFi) Crash caused by signal #6: Aborted (D:14) 14:13:15 horredgrones (L23 DsNe) Crash caused by signal #6: Aborted (Depths:3) 14:13:16 jorn (L11 OpTm) Crash caused by signal #6: Aborted (D:8) 14:14:02 Webtiles server stopped. 14:14:23 Webtiles server started. 14:15:14 hm, what's up? 14:15:45 advil: I just restarted webtiles, didn't investigate 14:15:58 but disk isn't full, at least 14:16:13 sorry, could have waited a bit for you to look into it first, but wasn't sure if you were around 14:21:03 hm not sure from the log, server just started thrashing, random blocking etc 14:21:03 does seem to happen occasionally on that server 14:24:15 spicycebolla sorry, I meant SP_DEMONSPAWN 14:24:35 for purposes of adding a new species turning it into a flag would be fine though 14:38:23 New branch created: pull/1866 (1 commit) 13https://github.com/crawl/crawl/pull/1866 14:38:23 03hypractvChipmunk02 {GitHub} 07https://github.com/crawl/crawl/pull/1866 * 0.27-a0-862-ga4400b5: RST manual: escape the vertical bar key for layer toggle 10(3 minutes ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/a4400b541db4 15:07:51 -!- Teacup_ is now known as Teacup 15:55:23 nojaa (L27 FoCK) Crash caused by signal #6: Aborted (D (Sprint)) 16:02:14 nojaa (L27 FoCK) Crash caused by signal #6: Aborted (D (Sprint)) 16:05:27 Dj cannot autoexplore out of bog centre. 13https://crawl.develz.org/mantis/view.php?id=12553 by Yermak 16:12:10 nojaa (L27 FoCK) Crash caused by signal #6: Aborted (D (Sprint)) 17:00:28 gotcha, thanks advil 17:01:11 maybe SPF_EVIL would be better. cuz i can't think of any instances where it matters that a player character is demonic, and undead aren't also part of it 17:12:44 though, there's already MH_EVIL 18:23:00 Unstable branch on underhound.eu updated to: 0.27-a0-861-g9529aa9bf3 (34) 18:35:29 i did it :D https://github.com/RojjaCebolla/speciesCrawl/compare/WIPspecies 21:13:51 -!- Thurl is now known as Nivim 22:09:36 03kate-02 07* 0.27-a0-862-gb963882: Reduce shoutitis and no potion heal from 3 to 2 levels 10(2 days ago, 8 files, 39+ 30-) 13https://github.com/crawl/crawl/commit/b963882b24d8 22:09:36 03kate-02 07* 0.27-a0-863-gea5aba7: Add some mutation comments 10(2 days ago, 1 file, 2+ 0-) 13https://github.com/crawl/crawl/commit/ea5aba70169a 22:09:36 03kate-02 07* 0.27-a0-864-g801a00d: Adjust a potion message 10(4 hours ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/801a00d0d6cc 22:09:36 03kate-02 07* 0.27-a0-865-g357e685: Improve some engulf handling 10(30 hours ago, 6 files, 9+ 7-) 13https://github.com/crawl/crawl/commit/357e685177de 22:09:36 03kate-02 07* 0.27-a0-866-g7aa06ce: Don't increase engulf damage against water-vulnerable creatures 10(30 hours ago, 1 file, 5+ 3-) 13https://github.com/crawl/crawl/commit/7aa06ce5126e 22:09:36 03kate-02 07* 0.27-a0-867-g4f44552: Allow engulfing constricted targets 10(27 hours ago, 3 files, 7+ 5-) 13https://github.com/crawl/crawl/commit/4f445523375c 22:09:36 03kate-02 07* 0.27-a0-868-gf81f37f: Add a Jiyva mutation to engulf monsters in ooze 10(27 hours ago, 4 files, 30+ 0-) 13https://github.com/crawl/crawl/commit/f81f37f261e4 22:09:36 03kate-02 07* 0.27-a0-869-g165b36e: Make WJC Heavenly Storm grant bonus EV 10(2 days ago, 6 files, 25+ 13-) 13https://github.com/crawl/crawl/commit/165b36e3f065 22:21:57 aw come on, i know it says 2 days ago but b963882b24d8 messes me up! :P 22:29:21 <10P​leasingFungus> @kate ooh, new J mutation! love it 22:31:20 <05k​ate> inspired by quicksilver oozes! i think engulfing and drowning resistance as a mechanic are still a bit messy but it's probably fine to be a bit weird for a jiyva-only thing 22:31:51 Unstable branch on crawl.kelbi.org updated to: 0.27-a0-869-g165b36e3f0 (34) 22:33:38 <05k​ate> the damage-over-time turns out pretty noticeable i think, but more restricted in what it can affect compared to constriction 22:33:53 <10P​leasingFungus> sort of funny that i ended up adding qs oozes and then immediately 'removing' oozes 22:34:11 <10P​leasingFungus> and also death oozes? can't have that conflict 22:34:13 <10P​leasingFungus> ??death ooze 22:34:14 <04C​erebot> death ooze[1/1]: An acidic ooze with a rotting attack. It's faster than normal, and eats things like other Js. They are undead, and can be killed with Dispel Undead. TSO and Zin enjoy them dying, too. Removed: too Tolkien. 22:34:18 <10P​leasingFungus> too tolkein. 22:45:19 -!- Yermak_ is now known as Yermak 23:44:26 ??imp species 23:44:26 imp species[1/3]: Player species Imp. Main feature is permanent teleportitis and a blink intrinsic, also little, demonic, assorted resistances/immunities, regen 1, shoutitis. Used to be playable as an experimental branch on CBRO! 23:50:02 04Build failed for 08master @ 165b36e3 06https://github.com/crawl/crawl/actions/runs/710397682 23:52:25 <05k​ate> Ludicrosity's ghost waves its NO PLURAL ARMS in wide circles. The air twists around and strikes you! 23:53:28 <05k​ate> sadly it killed itself on injury mirror by doing that so i don't know what species it was, maybe i can find it still 23:54:25 <05k​ate> ah, octopode it looks like 23:58:46 <05k​ate> ah this looks very prone to breaking, the check for handname is based on body shape and glyph (and ghosts have the body shape of their space but not the glyph so it fails for octopodes) 23:59:35 <10P​leasingFungus> wow 23:59:57 <05k​ate> !source monster::hand_name 23:59:57 <04C​erebot> 1/1. https://github.com/crawl/crawl/blob/master/crawl-ref/source/monster.cc#L2355