00:02:18 -!- foophykins has quit [Quit: Page closed] 00:02:22 -!- debo has quit [Ping timeout: 252 seconds] 00:08:13 -!- Textmode has joined ##crawl-dev 00:08:19 -!- Kalir has quit [Changing host] 00:16:29 -!- giantbat has quit [Client Quit] 00:17:39 -!- Pacra has quit [Ping timeout: 240 seconds] 00:20:14 -!- BanMido has quit [Ping timeout: 246 seconds] 00:23:16 -!- ussdefiant has joined ##crawl-dev 00:29:05 -!- amalloy_ is now known as amalloy 00:34:10 i ran into something last game that i thought was probably a bug but i'm not sure i guess. if you load this up: !lm amalloy hesk ru 1 uniq=the_royal_jelly -tv you'll see that just before he dies, TRJ gets corroded. he should be immune to that, right? 00:34:44 was it friendly fire from an acid blob? 00:35:01 or something enslaved or phantom mirror? 00:35:03 uhhhh, i thought at the time that it was my shadow-creature acid blob, but it might have been friendly 00:35:15 @??the_royal_jelly 00:35:15 royal jelly (08J) | Spd: 14 | HD: 21 | HP: 230 | AC/EV: 8/4 | Dam: 5008(acid:7d3), 3008(acid:7d3) | 04eats items, see invisible, unbreathing | Res: 06magic(180), 03poison, 08acid+++, 08blind, 12drown | Vul: 11silver | XP: 14176 | Sz: Medium | Int: brainless. 00:35:40 not sure how monster corrosion applies 00:36:08 !lm amalloy hesk ru 1 uniq=the_royal_jelly -tv:channel=amalloy:<0.2:x0.2 00:36:09 1. amalloy, XL24 HESk, T:86591 (milestone) requested for amalloy: telnet://termcast.develz.org or http://termcast.develz.org. 00:36:46 yeah, it was my acid blob, not one of his friends 00:36:52 !lm amalloy hesk ru 1 uniq=the_royal_jelly -tv:channel=amalloy:<0.2:x0.2:cancel 00:36:53 1. amalloy, XL24 HESk, T:86591 (milestone) cancel requested for amalloy: telnet://termcast.develz.org or http://termcast.develz.org. 00:37:59 -!- Codrus has quit [Ping timeout: 256 seconds] 00:43:02 -!- coledot has quit [Quit: coledot] 00:59:46 -!- Guest49820 is now known as SwissStopwatch 01:00:05 -!- onget has quit [Quit: Page closed] 01:01:46 Unstable branch on crawl.s-z.org updated to: 0.17-a0-1397-g0eee0a3 (34) 01:03:06 amalloy: yeah, see monster::corrode_equipment (default degree is 1) 01:03:22 namely 01:03:25 degree = binomial(degree, 50); 01:03:26 if (!degree) 01:03:37 and return in that if block 01:04:24 so it looks like monster have rcorr+++ is the same as having rcorr+ 01:08:22 -!- wat has quit [Ping timeout: 252 seconds] 01:08:31 -!- ontoclasm has quit [Quit: Leaving.] 01:12:01 Game crashes after selecting species and background 13https://crawl.develz.org/mantis/view.php?id=9791 by lvdisturbed1 01:12:54 !tell Grunt 9791 is an android crash at game start 01:12:55 gammafunk: OK, I'll let grunt know. 01:14:29 -!- Lightli has quit [Ping timeout: 246 seconds] 01:16:38 -!- rossi has quit [Ping timeout: 264 seconds] 01:18:56 -!- carmstro1g has quit [Ping timeout: 256 seconds] 01:19:08 Unstable branch on crawl.develz.org updated to: 0.17-a0-1397-g0eee0a3 (34) 01:20:20 -!- mibe has quit [Quit: Page closed] 01:24:27 -!- Brannock has quit [Ping timeout: 256 seconds] 01:24:30 where would i store something like the indefinite-buffs i was thinking about for this new god? N new fields in player.attributes? plus probably N more if players are going to temporarily have only the malus, not the bonus? 01:25:52 well you can store a vector as a prop 01:26:03 but maybe |amethyst knows how better to store that 01:26:14 that being your buff data 01:26:21 right 01:26:48 i am not sure how capable the vectors in props can be. just vectors of ints? vectors of anything at all? 01:27:14 i guess i can find that out myself 01:27:23 -!- Twiggytwiggytwig has quit [Quit: See ya guys later ;)] 01:30:23 i see. anything we have a CrawlStoreValue implementation for 01:30:33 -!- iFurril has quit [Ping timeout: 264 seconds] 01:30:45 I think it's a fixedvector? 01:30:54 gammafunk: no, it's a hashmap 01:31:01 you can put any old junk in there 01:31:09 no I mean 01:32:21 the value can be 01:32:26 a CrawlVector 01:32:36 right 01:33:19 -!- tabstorm has quit [Ping timeout: 240 seconds] 01:33:26 -!- tgcid has joined ##crawl-dev 01:35:01 which can store any CrawlStoreValue. so if i wanted (not sure that i do), i could store a vector, indexed by preparation name, of hashmaps, each with a couple properties: "is this on, off, warming up, or cooling down? how many turns left until it finishes turning on or off?" 01:35:34 that sounds like you're recreating durations 01:35:38 well 01:35:51 and I assume you mean auts 01:35:56 yes, auts of course 01:36:02 i have also been playing with the idea of using durations for it 01:36:14 but since they are semi-permanent, attributes seemed more appropriate 01:36:25 hence my earlier question 01:36:35 yeah I'd get |amethyst's opinion just to make sure you don't go creating something that's a lot of duplication or very difficult to maintain 01:37:31 gammafunk: does he usually catch up on the backlog, or should i send him a !tell? 01:37:59 he does read backlog but if you want to be extra sure, maybe a tell; might be a bit hard to fit in a tell though :) 01:38:14 an exercise in being concise! 01:40:27 !tell |amethyst i am not sure where to store the semi-permenent durations for my proposed god. they last indefinitely, which feels like an attribute; but also have cooldown (and possibly warmup) periods during which you have only the malus with no advantage, which sounds more like a duration. i could manage it myself by storing a vector> in you.props, but then i am close to reimplementing durations 01:40:27 Maximum message length is 300 characters. Eschew verbosity, Gladys! 01:40:38 aw c'mon man, i was close 01:40:54 well i guess i wasn't very close 01:43:28 !tell |amethyst where should i store my semi-permenent durations? they are indefinite, which feels attribute-y; but have cooldown (+ warmup?) periods where you have only the malus, no benefit, which sounds duration-y. managing it myself as a vector> in you.props is close to reimplementing durations. 01:43:29 amalloy: OK, I'll let |amethyst know. 01:44:23 Sequell is a cruel master for someone as loquacious as i 01:46:18 -!- debo has joined ##crawl-dev 01:49:26 -!- Taraiph has quit [Ping timeout: 250 seconds] 01:49:57 -!- dtsund has quit [Ping timeout: 256 seconds] 01:51:05 -!- debo has quit [Ping timeout: 245 seconds] 01:52:43 Windows builds of master branch on crawl.develz.org updated to: 0.17-a0-1397-g0eee0a3 01:53:58 -!- Jokela has joined ##crawl-dev 01:56:25 -!- Jokela has quit [Quit: bye] 02:02:44 -!- kazimuth has quit [Quit: Textual IRC Client: www.textualapp.com] 02:09:35 -!- debo has joined ##crawl-dev 02:09:45 -!- Andygal has quit [] 02:10:21 -!- GauHelldragon has quit [Ping timeout: 256 seconds] 02:15:19 -!- debo has quit [Ping timeout: 276 seconds] 02:17:18 -!- Blazinghand has joined ##crawl-dev 02:18:56 -!- Blazinghand_ has joined ##crawl-dev 02:19:32 -!- Blazinghand_ has quit [Client Quit] 02:27:43 -!- tabstorm has quit [Ping timeout: 244 seconds] 02:29:11 -!- Kalir has quit [Quit: CADENZA-CLASS CLOCKWORK KNIGHT--OPERATION TERMINATED] 02:32:27 -!- Krakhan has quit [Ping timeout: 256 seconds] 02:35:41 -!- Smello has quit [Ping timeout: 245 seconds] 02:37:38 -!- bmfx has quit [Ping timeout: 264 seconds] 02:45:18 -!- WereVolvo has quit [Read error: Connection reset by peer] 02:45:36 -!- mumbologist has quit [Ping timeout: 255 seconds] 02:50:40 Monster database of master branch on crawl.develz.org updated to: 0.17-a0-1397-g0eee0a3 02:53:50 -!- CanOfWorms has quit [Quit: ChatZilla 0.9.91.1 [Firefox 3.6.28/20120306064154]] 03:11:55 Unstable branch on crawl.beRotato.org updated to: 0.17-a0-1397-g0eee0a3 (34) 03:13:20 -!- groth has quit [Client Quit] 03:13:24 -!- muravey has joined ##crawl-dev 03:14:11 -!- groth has quit [Client Quit] 03:16:37 -!- rossi has quit [Ping timeout: 265 seconds] 03:17:59 -!- domiryuu has quit [Remote host closed the connection] 03:21:33 -!- Smello has quit [Ping timeout: 264 seconds] 03:23:05 -!- Tp_ is now known as Musclemanjr 03:24:43 -!- groth has quit [Quit: Be back later ...] 03:25:06 -!- Musclemanjr has quit [Client Quit] 03:25:45 -!- Nobuharu has quit [Client Quit] 03:26:37 -!- Foamed has quit [Quit: Leaving] 03:34:23 -!- simmarine has quit [Read error: Connection reset by peer] 03:36:52 -!- Textmode has quit [Quit: "It was one dev, naked in a room with a carton of cigarettes, a thermos full of coffee and bourbon, and all his summoned angels."] 03:36:57 -!- ussdefiant has quit [Ping timeout: 244 seconds] 03:37:59 -!- Yllodra has quit [Ping timeout: 244 seconds] 03:44:15 -!- ktgrey has quit [Ping timeout: 265 seconds] 03:44:25 -!- UncertainKitten has quit [Quit: Connection reset by pier.] 03:54:55 -!- falu has quit [Quit: WeeChat 1.2] 04:14:38 -!- Smello has quit [Ping timeout: 265 seconds] 04:20:16 -!- panicbit has quit [Ping timeout: 245 seconds] 04:20:59 -!- groth has quit [Quit: Be back later ...] 04:25:57 -!- ShopKeeper has quit [Ping timeout: 246 seconds] 04:28:32 -!- Patashu has joined ##crawl-dev 04:38:55 -!- rophy has quit [Remote host closed the connection] 04:39:00 -!- Lightli has joined ##crawl-dev 04:40:09 -!- nailbunny has quit [Remote host closed the connection] 04:41:24 -!- bencryption has quit [Ping timeout: 252 seconds] 04:45:22 -!- shuangxi has quit [Quit: Textual IRC Client: www.textualapp.com] 04:46:40 -!- amalloy is now known as amalloy_ 04:47:33 -!- Gurmil has quit [Ping timeout: 250 seconds] 04:58:50 -!- shuangxi has quit [Client Quit] 05:04:18 -!- alvarops has quit [Quit: Leaving] 05:06:42 -!- st_ has joined ##crawl-dev 05:08:57 -!- shuangxi has quit [Ping timeout: 264 seconds] 05:12:51 -!- Tpain has quit [Quit: Leaving] 05:15:41 -!- rossi has quit [Ping timeout: 245 seconds] 05:21:53 -!- Blazinghand has quit [Read error: Connection reset by peer] 05:34:33 -!- sinusoidal_ has quit [Ping timeout: 246 seconds] 05:41:12 -!- Earlo has quit [Remote host closed the connection] 05:47:17 -!- Idolo has quit [] 06:05:52 -!- Fusha has quit [Client Quit] 06:10:46 -!- siepu has quit [Ping timeout: 276 seconds] 06:11:26 -!- halberd has quit [Ping timeout: 246 seconds] 06:13:35 -!- panicbit has quit [Ping timeout: 252 seconds] 06:16:03 -!- xcourier has quit [Quit: || TriviaBot App for iOS http://apple.co/1Fw9jKg ||] 06:17:16 -!- __miek has quit [Ping timeout: 276 seconds] 06:32:12 -!- Pacra has joined ##crawl-dev 06:33:12 -!- omniscient has quit [Ping timeout: 252 seconds] 06:36:01 -!- Ququman has joined ##crawl-dev 06:36:18 -!- debo has joined ##crawl-dev 06:41:19 -!- debo has quit [Ping timeout: 276 seconds] 06:43:57 -!- bencryption has quit [Ping timeout: 240 seconds] 06:46:50 -!- scummos__ has quit [Ping timeout: 252 seconds] 06:49:56 -!- Suga_H has quit [Ping timeout: 272 seconds] 06:56:45 -!- Pacra has quit [Ping timeout: 276 seconds] 07:04:24 -!- shuangxi has quit [Ping timeout: 245 seconds] 07:04:40 -!- debo has joined ##crawl-dev 07:06:35 -!- Lasty has joined ##crawl-dev 07:08:25 -!- DrStalker has quit [Read error: Connection reset by peer] 07:11:04 -!- bonghitz has quit [Remote host closed the connection] 07:13:40 -!- shuangxi has quit [Max SendQ exceeded] 07:15:37 -!- Monkaria has quit [Client Quit] 07:16:18 -!- rossi has quit [Ping timeout: 252 seconds] 07:16:37 -!- shuangxi has quit [Max SendQ exceeded] 07:19:24 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 07:21:35 -!- Fusha has quit [Ping timeout: 256 seconds] 07:25:28 -!- Patashu has quit [Ping timeout: 255 seconds] 07:25:31 -!- SomeStupidGirl has quit [Ping timeout: 276 seconds] 07:26:24 -!- Patashu has joined ##crawl-dev 07:28:47 -!- tgcid has quit [Quit: Leaving] 07:35:01 -!- Twiggytwiggytwig has quit [Quit: See ya guys later ;)] 07:36:15 -!- siepu has quit [Client Quit] 07:38:04 -!- DDFig has quit [Quit: Page closed] 07:44:21 -!- Lasty has quit [Quit: Leaving.] 07:47:09 -!- stubblyhead_ has quit [Read error: Connection reset by peer] 07:49:52 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 07:50:14 -!- cojito has quit [Ping timeout: 265 seconds] 07:50:22 -!- shuangxi has quit [] 07:52:54 -!- Pacra has joined ##crawl-dev 07:54:55 -!- clouded_ has joined ##crawl-dev 07:55:00 -!- st_ has quit [Read error: Connection reset by peer] 08:11:58 -!- KurzedMetal has quit [Read error: Connection reset by peer] 08:13:43 -!- wat has quit [Ping timeout: 256 seconds] 08:17:50 -!- bh has quit [Remote host closed the connection] 08:19:48 -!- Pacra has quit [Ping timeout: 256 seconds] 08:24:18 -!- Twiggytwiggytwig has quit [Ping timeout: 240 seconds] 08:24:25 -!- Lasty_ has joined ##crawl-dev 08:24:30 -!- Patashu has quit [Ping timeout: 276 seconds] 08:28:35 -!- bh has joined ##crawl-dev 08:35:42 -!- debo has quit [Ping timeout: 272 seconds] 08:46:17 -!- SurpriseTRex has quit [Read error: Connection reset by peer] 08:49:27 -!- Brannock has joined ##crawl-dev 08:51:34 Zwobot (L19 TrCK) (Vaults:4) 08:53:30 <|amethyst> amalloy: probably I'd use a duration for the part that times out, then either an attribute to keep it up, or make the duration never tick down to zero, and interpret a duration of 1 as meaning "it's ready" 08:53:33 Zwobot (L19 TrCK) (Vaults:4) 08:54:51 Zwobot (L19 TrCK) (Vaults:4) 08:56:47 -!- groth_ has quit [Quit: Be back later ...] 08:57:32 -!- siepu has quit [Ping timeout: 264 seconds] 08:57:42 -!- Chance672 has quit [Quit: Leaving my desktop..... laptop possibly?] 09:03:34 -!- iFurril has quit [Ping timeout: 255 seconds] 09:15:33 -!- rossi has quit [Ping timeout: 246 seconds] 09:25:30 -!- debo has joined ##crawl-dev 09:28:05 -!- SomeStupidGirl has quit [Client Quit] 09:28:24 -!- vale has quit [Remote host closed the connection] 09:32:00 -!- LordSloth has quit [Quit: so yeah, i don't want my IRC to ding at me if someone encounters my ghost] 09:35:56 -!- mamgar has quit [Read error: Connection reset by peer] 09:39:37 -!- Chiseanne has quit [Client Quit] 09:44:48 -!- wat has quit [Quit: Leaving] 09:58:38 -!- Dixlet has joined ##crawl-dev 10:01:01 -!- bmfx has quit [Ping timeout: 264 seconds] 10:11:14 -!- jefus has joined ##crawl-dev 10:15:48 -!- radinms has quit [Ping timeout: 244 seconds] 10:17:06 -!- mumbologist has quit [Ping timeout: 256 seconds] 10:17:12 -!- Tux[Qyou] has joined ##crawl-dev 10:26:38 -!- Fusha has quit [] 10:33:22 -!- vale has quit [Ping timeout: 244 seconds] 10:33:45 -!- tabstorm has quit [Ping timeout: 252 seconds] 10:34:37 -!- panicbit has quit [Ping timeout: 250 seconds] 10:45:16 -!- tabstorm has quit [Ping timeout: 255 seconds] 10:53:43 -!- BanMido has quit [Ping timeout: 246 seconds] 10:56:13 -!- read has quit [Read error: Connection reset by peer] 10:56:36 -!- read has joined ##crawl-dev 10:57:07 -!- ussdefiant has joined ##crawl-dev 11:04:03 -!- Dixlet has quit [Read error: Connection reset by peer] 11:04:22 -!- Dixlet has joined ##crawl-dev 11:08:47 -!- Dixlet has quit [Read error: Connection reset by peer] 11:09:02 -!- Dixlet has joined ##crawl-dev 11:11:30 -!- GauHelldragon has joined ##crawl-dev 11:13:42 -!- Daekdroom has quit [Quit: Leaving] 11:15:14 -!- GoodNews_ has quit [Client Quit] 11:16:17 -!- rossi has quit [Ping timeout: 276 seconds] 11:22:33 -!- siepu has quit [Quit: Leaving] 11:24:41 -!- DrKe is now known as and 11:24:47 -!- and is now known as DrKe 11:33:39 -!- Bcadren has quit [Ping timeout: 276 seconds] 11:34:19 -!- vale has quit [Ping timeout: 255 seconds] 11:38:09 -!- GoodNews has quit [Quit: Page closed] 11:50:00 -!- radinms has quit [] 12:04:44 -!- quik has quit [Ping timeout: 264 seconds] 12:05:44 -!- groth_ has quit [Quit: Be back later ...] 12:19:58 -!- tcjsavannah has quit [Quit: tcjsavannah] 12:23:38 -!- Dixlet has quit [Read error: Connection reset by peer] 12:23:45 !tell marvinpa "_The orc wizard looks braver." this has to stop 12:23:46 minmay: OK, I'll let marvinpa know. 12:23:55 -!- Dixlet has joined ##crawl-dev 12:25:37 now that ctele is gone are you going to have MPA remove everything 12:28:15 -!- MarvinPA has joined ##crawl-dev 12:28:18 -!- Molotove1mac] has quit [Ping timeout: 240 seconds] 12:28:34 -!- ussdefiant has quit [Ping timeout: 256 seconds] 12:31:50 -!- SurpriseTRex has quit [Quit: Leaving] 12:35:07 -!- vale has quit [Ping timeout: 252 seconds] 12:35:26 -!- Dixlet has quit [Read error: Connection reset by peer] 12:35:46 -!- Dixlet has joined ##crawl-dev 12:36:25 -!- seriallos has joined ##crawl-dev 12:37:23 -!- UncertainKitten has joined ##crawl-dev 12:41:11 -!- Dixlet has quit [Read error: Connection reset by peer] 12:41:41 -!- Dixlet has joined ##crawl-dev 12:42:44 -!- Sonata has quit [Ping timeout: 256 seconds] 12:43:14 -!- simmarine has joined ##crawl-dev 12:43:16 -!- bh_ has joined ##crawl-dev 12:45:09 -!- siepu has quit [*.net *.split] 12:45:09 -!- WereVolvo has quit [*.net *.split] 12:45:10 -!- bh has quit [*.net *.split] 12:45:10 -!- ktgrey has quit [*.net *.split] 12:45:10 -!- Gorgo has quit [*.net *.split] 12:45:10 -!- TMTurtle__ has quit [*.net *.split] 12:45:17 -!- Gorgo_ is now known as Gorgo 12:52:50 -!- giantbat has quit [Read error: Connection reset by peer] 12:56:50 -!- Blazinghand has joined ##crawl-dev 12:57:21 -!- groth_ has quit [Quit: Be back later ...] 12:57:59 -!- asdu has quit [Ping timeout: 246 seconds] 13:04:59 Unstable branch on crawl.akrasiac.org updated to: 0.17-a0-1397-g0eee0a3 (34) 13:08:28 -!- Dixlet has quit [Read error: Connection reset by peer] 13:08:45 -!- Dixlet has joined ##crawl-dev 13:14:13 -!- aarujn has joined ##crawl-dev 13:14:27 Hey guys . . . 13:14:43 -!- groth_ has quit [Quit: Be back later ...] 13:14:49 Is it known what's wrong with the web character-history updater? 13:15:16 (for-sure it's not pulling updates from cbro -- how widespread is the issue?) 13:15:21 <|amethyst> oh 13:15:28 <|amethyst> it got stuck pulling from CPO again 13:15:34 <|amethyst> three days ago it looks like 13:15:36 ah ok :) 13:16:32 so is it (only) cpo that "throws" it ? 13:17:11 -!- rossi has quit [Ping timeout: 276 seconds] 13:17:24 <|amethyst> yeah, I don't know what's up with that---I guess I should put in a --connect-timeout or something 13:17:27 <|amethyst> it has a read timeout of 900 seconds 13:18:13 ok 13:18:44 -!- Twiggytwiggytwig has quit [Ping timeout: 255 seconds] 13:20:47 <|amethyst> oh, no 13:21:00 <|amethyst> it's using --timeout=60 which should set all three of DNS, connect, and read timeouts 13:21:18 <|amethyst> okay, the update is running 13:21:32 <|amethyst> first update when it comes back up always takes longer because it has to regenerate all the player pages 13:21:39 <|amethyst> should be back to normal in an hour or two 13:22:16 -!- Dixlet has quit [Read error: Connection reset by peer] 13:22:33 -!- Dixlet has joined ##crawl-dev 13:22:50 you rock, as always! :) 13:23:11 Thanks on behalf of all players --- Take Care !! 13:23:19 <|amethyst> :) 13:23:35 -!- groth_ has quit [Client Quit] 13:23:55 -!- Dixlet has quit [Read error: Connection reset by peer] 13:24:13 -!- Dixlet has joined ##crawl-dev 13:32:32 -!- amalloy_ is now known as amalloy 13:35:15 |amethyst: you just sent the one message about durations, right? it's early in my scrollback and i want to make sure i didn't miss another one 13:35:24 <|amethyst> yeah, just the one 13:36:18 -!- vale has quit [Ping timeout: 265 seconds] 13:40:56 -!- aarujn has quit [Quit: aarujn] 13:42:46 -!- _miek has quit [Ping timeout: 245 seconds] 13:43:50 -!- bmfx has quit [Quit: Lost terminal] 13:54:01 <|amethyst> !lg * god.worship~~ecumenical 13:54:01 Unknown field: god.worship 13:54:03 <|amethyst> !lm * god.worship~~ecumenical 13:54:04 41. [2015-06-11 17:03:11] sage1234 the Bolt Thrower (L3 DDHu of Gozag) prayed at an ecumenical altar on turn 1256. (D:2) 13:54:47 <|amethyst> !lm * god.worship~~ecumenical x=src 13:54:48 41. [2015-06-11 17:03:11] [src=cao] sage1234 the Bolt Thrower (L3 DDHu of Gozag) prayed at an ecumenical altar on turn 1256. (D:2) 13:54:51 <|amethyst> !lm * god.worship~~ecumenical s=src 13:54:52 41 milestones for * (god.worship~~ecumenical): 41x cao 13:55:34 Remind me, where's the DCSS repository? Does it live on GitHub now? 13:55:37 <|amethyst> okay, 41 "Bad line:" messages from scoring too 13:55:39 <|amethyst> ??repo 13:55:39 I don't have a page labeled repo in my learndb. 13:55:42 tswett: yes 13:55:42 <|amethyst> ??github 13:55:42 github[1/1]: The site that hosts the crawl git repository at https://github.com/crawl/crawl 13:55:51 Great, thanks. 13:55:59 <|amethyst> !learn add repo see {github} 13:56:00 repo[1/1]: see {github} 13:56:00 |amethyst: there's a god.ecumenical milestone now, but it is kinda hard to search for because sequell doesn't understand it. do you know what has to change? 13:56:13 <|amethyst> sequell probably 13:56:18 <|amethyst> !lm * god.ecumenical 13:56:19 No keyword 'god.ecumenical' 13:56:22 <|amethyst> !lm * noun=god.ecumenical 13:56:23 No milestones for * (noun=god.ecumenical). 13:57:38 i think it is verb 13:57:43 !lm * verb=god.ecumenical 13:57:43 <|amethyst> doh 13:57:43 704. [2015-06-17 17:50:36] Iamsock the Chiller (L4 MfIE of Elyvilon) prayed at an ecumenical altar on turn 1474. (D:2) 13:57:45 -!- copt has quit [] 13:58:00 <|amethyst> !lm * verb=god.ecumenical x=noun 13:58:00 704. [2015-06-17 17:50:36] [noun=prayed at an ecumenical altar.] Iamsock the Chiller (L4 MfIE of Elyvilon) prayed at an ecumenical altar on turn 1474. (D:2) 13:58:11 <|amethyst> !lm * god.ecumenical~~prayed 13:58:12 Unknown field: god.ecumenical 13:58:31 <|amethyst> !kw god.worship 13:58:31 Built-in: god.worship => verb=god.worship 13:58:56 <|amethyst> !kw verb 13:58:57 Built-in: verb => verb!= 13:59:47 <|amethyst> ah 14:00:15 <|amethyst> amalloy: https://github.com/crawl/sequell/blob/master/config/crawl-data.yml milestone-types: 14:00:56 -!- edlothiol has joined ##crawl-dev 14:02:19 i see. so just an easy one-line PR 14:02:43 <|amethyst> yeah, but snark also has to restart sequell after applying it 14:03:04 <|amethyst> so probably let him know about the PR in ##crawl-sequell (or here) 14:03:59 okay 14:08:07 -!- ldf_ has quit [Quit: Page closed] 14:09:32 !lm * god.worship x=noun 14:09:33 793417. [2015-06-17 18:06:54] [noun=Makhleb] DeNseyz the Skirmisher (L4 MiFi of Makhleb) became a worshipper of Makhleb on turn 1440. (D:3) 14:09:44 !lm * verb=god.ecumenical x=noun 14:09:44 704. [2015-06-17 17:50:36] [noun=prayed at an ecumenical altar.] Iamsock the Chiller (L4 MfIE of Elyvilon) prayed at an ecumenical altar on turn 1474. (D:2) 14:09:51 |amethyst: shouldn't the noun here be the god you wound up with? 14:10:07 so that you can do stuff like !lm * recent s=god.ecumenical? 14:10:24 as opposed to !lm * recent god.ecumenical s=god 14:11:51 -!- rossi has quit [Read error: Connection reset by peer] 14:13:20 Now, let's see if I can build Crawl in MSVC++ 2010 Express. 14:13:35 I seem to be getting hundreds of fatal errors. 14:14:02 RIP MSVC++ 14:14:20 tswett: there's some kind of MSVC++ project file, i think 14:14:27 -!- tcjsavannah has quit [Quit: tcjsavannah] 14:15:33 Does MSVC++ 2010 Express support C++11? I know that 2010 < 2011... 14:15:48 -!- rossi has quit [Read error: Connection reset by peer] 14:15:53 And it looks like Crawl requires C++11 nowadays, right? 14:16:25 msvc is dubious about c++11 in general 14:16:39 I *think* if you have the latest one it should work 14:16:54 (and reportedly the next one will actually have something resembling full c++11) 14:16:56 https://msdn.microsoft.com/en-us/library/hh567368.aspx - this says constexpr isn't even supported in 2013. 14:17:10 So... guess I need to use an external build system. 14:17:10 -!- rossi has quit [Read error: Connection reset by peer] 14:17:35 <|amethyst> 2010 definitely won't work, but we want to support 2012 14:17:59 <|amethyst> so if you report build errors with 2012 we'll try to fix them 14:18:11 <|amethyst> in particular, we could do a #define constexpr const there 14:19:55 Ah, what's this? I have Visual Studio Ultimate 2013? 14:20:00 -!- rossi has quit [Read error: Connection reset by peer] 14:20:09 That doesn't sound like something that's free. 14:20:13 -!- bmfx has quit [Ping timeout: 264 seconds] 14:20:18 -!- Nightbeer has quit [Quit: Verlassend] 14:21:54 -!- plathrop has joined ##crawl-dev 14:22:15 Hey devs. I just wanted to say THANK YOU. Crawl is an excellent game and I consistently have a lot of fun playing it. 14:24:39 -!- rossi has quit [Read error: Connection reset by peer] 14:26:33 * tswett pokes the devs. 14:26:45 (psst, say thanks, y'guys) 14:27:48 lol, nah, no need 14:27:55 I just hope they see it and feel appreciated 14:28:11 Thanks for coming in, and glad you're having fun. :) 14:28:20 Since so often all I see is criticism (the non-constructive kind) 14:28:30 tswett: :-) 14:30:07 -!- rossi has quit [Read error: Connection reset by peer] 14:32:42 -!- Dixlet has quit [Read error: Connection reset by peer] 14:32:59 -!- Dixlet has joined ##crawl-dev 14:34:16 -!- rossi has quit [Read error: Connection reset by peer] 14:34:21 -!- Dixlet has quit [Read error: Connection reset by peer] 14:34:40 -!- Dixlet has joined ##crawl-dev 14:36:44 -!- vale has quit [Ping timeout: 265 seconds] 14:37:26 -!- asdu has quit [Quit: Page closed] 14:38:33 -!- rossi has quit [Read error: Connection reset by peer] 14:39:47 -!- DashNine has quit [Quit: Process terminated] 14:45:14 -!- rossi has quit [Read error: Connection reset by peer] 14:51:12 -!- rossi has quit [Read error: Connection reset by peer] 14:59:24 -!- Dixlet has quit [Read error: Connection reset by peer] 14:59:44 -!- Dixlet has joined ##crawl-dev 15:02:48 plathrop +1 15:04:12 -!- GauHelldragon has quit [Ping timeout: 265 seconds] 15:05:13 -!- Dixlet has quit [Ping timeout: 264 seconds] 15:05:59 -!- Zwobot has quit [Client Quit] 15:06:02 -!- Dixlet has joined ##crawl-dev 15:07:23 -!- Dixlet has quit [Read error: Connection reset by peer] 15:07:40 -!- Dixlet has joined ##crawl-dev 15:15:21 -!- rossi has quit [Ping timeout: 252 seconds] 15:19:03 -!- carwin has quit [Client Quit] 15:19:50 -!- stanzill has quit [Quit: au rev] 15:20:12 -!- Dixlet has quit [Ping timeout: 250 seconds] 15:22:03 -!- Foamed has quit [Quit: Leaving] 15:23:33 -!- Kalir has quit [Changing host] 15:26:29 -!- Dixlet has joined ##crawl-dev 15:27:04 -!- Dixlet has quit [Read error: Connection reset by peer] 15:27:20 -!- Dixlet has joined ##crawl-dev 15:28:42 -!- Dixlet has quit [Read error: Connection reset by peer] 15:28:59 -!- Dixlet has joined ##crawl-dev 15:29:34 -!- Dixlet has quit [Read error: Connection reset by peer] 15:31:05 -!- panicbit has quit [Ping timeout: 276 seconds] 15:34:45 -!- BOTBrad_ has quit [Quit: Connection closed for inactivity] 15:37:22 -!- archaeo has joined ##crawl-dev 15:37:45 -!- vale has quit [Ping timeout: 264 seconds] 15:44:19 !source dat/des/portals/ossuary.des 15:44:19 https://github.com/crawl/crawl/blob/master/crawl-ref/source/dat/des/portals/ossuary.des 15:44:40 !vault ossuary_minmay_tomb_2a 15:44:40 1/1. https://github.com/crawl/crawl/blob/master/crawl-ref/source/dat/des/portals/ossuary.des#l576 15:45:03 the traps in this have been (more) pointless for years, can someone remove them please 15:48:49 -!- rossi has quit [Read error: Connection reset by peer] 15:49:59 -!- rossi has quit [Read error: Connection reset by peer] 15:53:50 -!- quik has quit [Ping timeout: 276 seconds] 15:55:55 -!- rossi has quit [Client Quit] 15:59:59 -!- Tpain is now known as Musclemanjr 16:03:02 -!- edlothiol has quit [Remote host closed the connection] 16:10:22 -!- PsyMar has quit [Quit: witty quit message goes here] 16:11:34 -!- Trar has joined ##crawl-dev 16:11:38 -!- Trar has left ##crawl-dev 16:19:31 -!- Fusha has quit [] 16:22:20 -!- __miek has quit [Ping timeout: 245 seconds] 16:37:06 -!- TAS_2012v has quit [] 16:38:32 -!- vale has quit [Ping timeout: 265 seconds] 16:41:49 -!- Piginabag has quit [Quit: Page closed] 16:43:54 -!- Brannock_ has joined ##crawl-dev 16:45:59 -!- Lasty has joined ##crawl-dev 16:46:00 -!- us17 has quit [Ping timeout: 250 seconds] 16:46:03 <|amethyst> !lg * recent map~~ossuary_minmay_tomb_2a s=ktyp 16:46:04 315 games for * (recent map~~ossuary_minmay_tomb_2a): 253x mon, 34x trap, 13x beam, 7x pois, 7x quitting, cloud 16:46:35 -!- Lasty_1 has joined ##crawl-dev 16:46:42 -!- quik has quit [Ping timeout: 246 seconds] 16:46:45 <|amethyst> (I imagine nearly everyone who died to a trap was going to die to monsters anyway) 16:46:52 -!- FatShack has quit [Ping timeout: 250 seconds] 16:47:18 -!- Brannock has quit [Ping timeout: 250 seconds] 16:47:18 -!- Lasty_ has quit [Ping timeout: 250 seconds] 16:47:56 The orb of fire discussion on the tavern has gotten me thinking about adding a new monster to Depths and maybe Zot -- something that's slow, more or less indestructible, and which does significant damage at close range. The idea being that you cannot fight it, but must instead escape it. Since Chei is a thing, I'd probably make it walk at 20 AUT (sorry nagas), but attack at 5 AUT. 16:48:15 Anyone want to tell me why that's a terrible idea? 16:48:44 indestructible sounds silly 16:48:46 dudes exist to be killed 16:48:59 -!- FatShack has joined ##crawl-dev 16:50:33 <|amethyst> "slow, more or less indestructible, and which does significant damage at close range 16:50:37 <|amethyst> " 16:50:42 <|amethyst> => "takes forever to kite to death" 16:51:10 |amethyst: my premise is that it cannot be kited to death 16:51:16 <|amethyst> unless it is actually indestructible, in which case it needs to be clearly marked as such 16:51:28 Probably actually indestructible is the way to go there 16:54:59 -!- bonghitz has quit [Remote host closed the connection] 16:55:33 -!- tcjsavannah has quit [Quit: tcjsavannah] 16:55:49 I'm thinking a small number (0-2) would be wandering around on each of U:2-5, serving as a mobile obstable and generally making it harder to feel permanently safe. 16:56:43 <|amethyst> make it one that chases you across levels 16:56:53 <|amethyst> (FR: and call it a hellspider) 16:56:59 |amethyst: was that a thing? 16:57:22 <|amethyst> never got beyond brainstorming/design 16:57:43 <|amethyst> https://crawl.develz.org/wiki/doku.php?id=dcss:brainstorm:monster:creatures:hellspider 16:57:52 -!- TAS_2012v has joined ##crawl-dev 16:58:11 <|amethyst> (not actually "unkillable", but rather it comes back with extra resistance against what killed it) 16:58:54 that sounds bad unless it can follow you across levels or something 16:58:54 MarvinPA: You have 1 message. Use !messages to read it. 16:59:36 <|amethyst> (another FR related to Linley shmups: rename "Orb of Destruction" to "Furious Orb", from Overgod) 16:59:46 -!- ohyou has quit [Read error: Connection reset by peer] 16:59:48 and probably still not great in that case, i guess? just makes you retreat further and further away to rest 16:59:52 <|amethyst> and IMB to Eye of Desolation 17:00:52 MarvinPA: assuming you have enough cleared, safe space to rest, yeah 17:00:53 -!- WereVolvo1 has quit [Read error: Connection reset by peer] 17:02:02 <|amethyst> what is the purpose of the monster exactly? I mean, the purpose of "you cannot fight it, but must instead escape it"? 17:03:40 -!- debo has quit [Ping timeout: 265 seconds] 17:05:34 -!- Codrus has quit [Quit: Leaving.] 17:05:42 -!- Patashu has joined ##crawl-dev 17:06:19 <|amethyst> one worry I have is players with allies 17:06:25 I'm thinking of it as something makes the level its on slightly more dangerous by presenting a roving hazard that can't be mitigated 17:06:43 I'm growing less convinced that the idea has merit 17:06:44 <|amethyst> allies are dumb, and I worry that tr might not be good enough to make them not try to fight it 17:06:51 a fair point 17:07:03 you could also delay the monster indefinitely w/ summon butterflies... 17:08:26 <|amethyst> not if you gave it low-range shatter :) 17:08:53 heh, true! I was thinking of something similar . . . 17:08:57 <|amethyst> or cleaving even 17:09:21 I was thinking a reaching + cleaving deal 17:10:20 Chei existing means I can't really make it faster than 20 aut movement, which is not ideal 17:10:48 -!- Krakhan has quit [Changing host] 17:11:07 -!- Kellhus has quit [Quit: Page closed] 17:12:24 -!- mineral has joined ##crawl-dev 17:14:31 -!- read has quit [Ping timeout: 252 seconds] 17:15:33 -!- _miek has joined ##crawl-dev 17:17:14 -!- rossi has quit [Ping timeout: 264 seconds] 17:18:04 -!- mineral has quit [Ping timeout: 250 seconds] 17:19:13 Lasty: it could be a thing that doesn't path towards the player specifically, but just wanders on a fixed path 17:19:24 so you have to get out of its way, but you don't have to keep running away 17:20:05 <|amethyst> http://www.mariomonsters.com/archives/character.php?id=314 17:20:06 -!- tabstorm has quit [Ping timeout: 272 seconds] 17:21:36 -!- notequals41 has quit [Quit: Page closed] 17:27:47 -!- Alarkh has quit [Read error: Connection reset by peer] 17:27:49 just pretend chei doesn't exist 17:27:57 in general, not just for this particular case 17:29:29 http://www.memegen.com/meme/iv5txd 17:29:33 regarding chei 17:29:51 (not mine, but was for a while on the first page of google image results for cheibriados) 17:31:20 -!- panicbit has quit [Read error: Connection reset by peer] 17:31:56 -!- panicbit2 is now known as panicbit 17:32:13 you could also have it be a chei-sensitive monster 17:34:47 -!- panicbit1 has quit [Ping timeout: 255 seconds] 17:38:03 -!- wheals has joined ##crawl-dev 17:39:36 -!- vale has quit [Ping timeout: 276 seconds] 17:40:15 Lasty: the idea makes me think it could be good in pan (lose it by fleeing through a portal, gives a reason to hurry up a bit) 17:40:30 probably combined with some changes to make pan go faster 17:41:01 -!- Yllodra has quit [Ping timeout: 272 seconds] 17:42:55 -!- Patashu has quit [Ping timeout: 272 seconds] 17:43:58 -!- SomeStupidGuy has quit [Read error: Connection reset by peer] 17:47:24 -!- sinusoidal_ has quit [Quit: Page closed] 17:49:53 -!- omnirizon has quit [Ping timeout: 246 seconds] 17:51:17 -!- Cerpin has joined ##crawl-dev 17:54:33 -!- xcourier has quit [Quit: xcourier] 17:55:36 -!- Frelus has quit [Quit: Page closed] 17:58:50 -!- aarujn has quit [Quit: aarujn] 18:00:07 so it seems like, if i am going to do this herkan preparations thing, there are enough different abilities that are always available that it would be a bad plan to have them all on the actual (a)bility screen. i was planning to just have two abilities: turn something on, and turn something off, with both of them displaying some other menu. is there an easy way to make a menu that looks like the one on (a)? 18:00:10 -!- amalloy is now known as amalloy_ 18:02:02 -!- debo has joined ##crawl-dev 18:05:40 -!- Tux[Qyou] has quit [Read error: Connection reset by peer] 18:07:37 -!- Crehl has quit [Quit: Killed by a kitten] 18:12:16 -!- dtsund has joined ##crawl-dev 18:13:03 -!- twofortypee has quit [Quit: Connection closed for inactivity] 18:14:10 -!- MarvinPA has quit [Quit: Leaving] 18:15:21 the slow moving indestructable monster doesn't sound very fun, and I'm no sure what the point actually is 18:15:26 s/no/not/ 18:16:23 it would be good in the sense it would teach players that you can win while leaving monsters alive 18:16:34 there are a lot of players with several wins who have never not fought something in their path 18:16:50 if making a level slightly more dangerous is the objective, there are ways to achieve that (placing more vaults, using a different layout, placing more monsters) that don't involve slow-moving things 18:16:57 i would prefer it just kill you instead of being literally indestructible though 18:17:04 like shrike ball 18:17:41 shambling shrike mangrove that explodes into 8 shrikes 18:17:42 I think players can learn that lesson by just dying to monsters they could have theoretically have killed 18:17:54 youd think so but they don't 18:18:21 i mean its a matter of not caring enough i suppose 18:18:27 well if they choose not to learn that lesson, why are other players to be punished? their suffering is "winning a lowers % of the games they play" 18:18:33 s/lowers/lower/ 18:18:42 thats a good point but i still like the idea of shrikeball 18:20:03 well sure, nothing stops someone from making a vault that places 3 shrike bands or something 18:20:31 i mean like a shambling mangrove except its full of shrikes 18:20:35 and you are better off not killing it 18:20:43 i guess thats spoilery 18:21:09 well, mangroves aren't exactly spoiler, I think that they release a y or two is in their description? 18:21:17 i just feel like it would be comical 18:21:31 @??shambling_mangrove 18:21:31 shambling mangrove (04f) | Spd: 8 | HD: 13 | HP: 76-101 | AC/EV: 13/3 | Dam: 41 | 03plant, amphibious, unbreathing | Res: 06magic(100), 03poison, 12drown, 13neg+++, 13torm | XP: 675 | Sz: Big | Int: human. 18:21:43 oh, those don't have faster move in water 18:21:56 floating orb that you pop and get swarmed by shrikes 18:22:04 orb of shrikes 18:22:10 oh wait 18:22:12 shriking orb 18:22:26 *shrieking orb 18:22:38 if it just blows up like a spore or unseen horror, it's not different than just placing shrikes though 18:22:53 well make it slow-ish and avoidable 18:23:11 and just give it a ranged attack or whatever 18:23:16 like imb 18:23:29 and not 1hp 18:23:36 so you dont accidentally kill it 18:23:50 I think if you make it really silly to activate this behaviour, it's just the same problem MPA said earlier 18:24:16 leave the level to rest 18:24:16 well, depths has doors 18:24:18 you could close a door 18:25:02 that's not really relevent unless you happen to be close to a door (assuming it has dangerous attacks on its own) 18:25:35 I imagine it will encourage more random teleport or blink scroll usage 18:26:44 if it's only somewhat dangerous to attack (like mangroves), then it's not so onerous for the player, but I'm not sure that the objective of the monster has been achieved, if that objective is "make a thing that's it's bad to ever fight" 18:27:40 s/that's it's/that's/ 18:29:02 "a thing that's bad to ever fight" is already accomplished by uniques 18:39:45 -!- vale has quit [Ping timeout: 246 seconds] 18:44:49 -!- wheals has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 18:45:16 |amethyst: whelp, since Visual Studio 2012 doesn't support constexpr, does that mean we should get rid of it? 18:51:17 -!- HellTiger has quit [Ping timeout: 276 seconds] 18:51:39 -!- carmstro1g has quit [Ping timeout: 246 seconds] 19:02:11 -!- siepu_ has quit [Read error: Connection reset by peer] 19:04:45 -!- Idolo has quit [Ping timeout: 264 seconds] 19:08:40 -!- scummos__ has quit [Ping timeout: 276 seconds] 19:15:20 -!- Suga_H has quit [Ping timeout: 276 seconds] 19:16:01 -!- rossi has quit [Ping timeout: 256 seconds] 19:16:17 -!- Ladykiller69 has quit [Quit: Verlassend] 19:19:36 Is it OK that an artefact armour has both *Corrode and rCorr? 19:22:50 MakMorn: sure. It just means you get 50% as much corrosion 19:22:59 -!- BOTBrad has quit [Ping timeout: 246 seconds] 19:28:44 -!- Pacra has joined ##crawl-dev 19:30:00 -!- Textmode has joined ##crawl-dev 19:31:35 thanks 19:33:36 -!- reaverb has joined ##crawl-dev 19:34:09 -!- panicbit has quit [Ping timeout: 264 seconds] 19:36:56 probably less than that overall 19:37:12 with rcorr the stacks are more likely to reset 19:38:51 and imo 2 stacks is more than twice as bad as 1 19:40:01 -!- reaverb has quit [Ping timeout: 244 seconds] 19:40:32 -!- vale has quit [Ping timeout: 256 seconds] 19:46:47 -!- edgefigaro has quit [Ping timeout: 246 seconds] 19:49:22 -!- bonghitz has quit [Ping timeout: 265 seconds] 19:53:12 -!- Kalir has quit [Quit: CADENZA-CLASS CLOCKWORK KNIGHT--OPERATION TERMINATED] 20:00:34 -!- GauHelldragon has quit [Ping timeout: 250 seconds] 20:05:10 -!- groth_ has quit [Quit: Be back later ...] 20:18:20 -!- ussdefiant has joined ##crawl-dev 20:26:24 -!- bonghitz_ has quit [Remote host closed the connection] 20:26:29 -!- nimbus9to5 has quit [Quit: Page closed] 20:35:31 -!- Monkaria has quit [Quit: Page closed] 20:35:36 -!- ussdefiant has quit [Ping timeout: 246 seconds] 20:41:31 -!- vale has quit [Ping timeout: 272 seconds] 20:48:54 -!- Ququman has quit [Remote host closed the connection] 20:50:21 -!- staplegun has quit [Ping timeout: 265 seconds] 20:51:38 -!- Foamed has quit [Quit: Leaving] 20:55:10 -!- omniscientist has quit [Read error: Connection reset by peer] 20:59:48 -!- Earlo has quit [Remote host closed the connection] 21:02:40 -!- amalloy_ is now known as amalloy 21:04:14 -!- tcjsavannah has quit [Quit: tcjsavannah] 21:17:21 -!- clouded_ has quit [Read error: Connection reset by peer] 21:17:32 -!- rossi has quit [Ping timeout: 255 seconds] 21:18:26 -!- st_ has joined ##crawl-dev 21:19:19 New branch created: pull/67 (1 commit) 13https://github.com/crawl/crawl/pull/67 21:19:19 03DrKe02 07https://github.com/crawl/crawl/pull/67 * 0.17-a0-1398-g9d986b7: Make scales mutation messages consistent 10(10 minutes ago, 1 file, 4+ 4-) 13https://github.com/crawl/crawl/commit/9d986b725695 21:21:42 -!- debo has quit [Ping timeout: 265 seconds] 21:21:46 -!- seriallos has quit [Ping timeout: 265 seconds] 21:24:58 -!- Yllodra has quit [Ping timeout: 252 seconds] 21:27:01 -!- Pacra has quit [Read error: No route to host] 21:27:54 -!- Pacra has joined ##crawl-dev 21:36:48 -!- bh_ is now known as bh 21:41:06 -!- GauHelldragon has quit [Disconnected by services] 21:41:13 -!- GauHelldragon2 is now known as GauHelldragon 21:41:57 -!- vale has quit [Ping timeout: 244 seconds] 21:43:23 -!- Sequell has quit [Remote host closed the connection] 21:47:19 03DrKe02 07* 0.17-a0-1398-g9d986b7: Make scales mutation messages consistent 10(38 minutes ago, 1 file, 4+ 4-) 13https://github.com/crawl/crawl/commit/9d986b725695 21:47:19 03gammafunk02 07* 0.17-a0-1399-gd5b76e1: Merge pull request #67 from drke2/patch-1 10(9 seconds ago, 0 files, 0+ 0-) 13https://github.com/crawl/crawl/commit/d5b76e1af70e 21:47:56 -!- Sequell has joined ##crawl-dev 21:56:43 -!- dakonic has quit [Quit: Page closed] 22:07:24 -!- nicolae- has joined ##crawl-dev 22:07:41 fr remove all species and backgrounds 22:10:37 Singularity seems better than tornado 22:11:56 -!- gressup has quit [Quit: Leaving] 22:12:25 -!- read has joined ##crawl-dev 22:12:38 -!- nimbus9to5 has quit [Quit: Page closed] 22:12:54 i've heard a few people make the suggestion that singularity should be conj/tloc, if it needs a nerf 22:13:46 -!- omnirizon has quit [Ping timeout: 264 seconds] 22:14:50 i would suggest instead tloc/poison/crossbows 22:19:49 tloc/poison/stealth 22:19:56 Making it placeable at a shorter range, and either able to damage you or foes might help 22:20:04 er 22:20:08 you and/or allies 22:20:15 Foes it already damages :p 22:20:28 actually, if you removed the ability to damage foes, it'd be a pretty good nerf 22:20:31 but not damaging allies is pretty nuts 22:20:52 nicolae-: that seems pretty reasonable -- amplify the pull slightly and remove all damage 22:21:04 make it a way of moving people out of the areas you care about 22:21:32 -!- Lasty has quit [Quit: Leaving.] 22:21:48 i guess lasty was so excited about that idea that he disappeared 22:23:25 -!- Lasty has joined ##crawl-dev 22:24:22 -!- tcjsavannah has quit [Quit: tcjsavannah] 22:24:33 it'd have to be pretty good at moving stuff around to still be level 9 with no damage 22:24:45 like... a cluster of enemies all bunched up like chumps around a black hole 22:26:12 you could always just nerf the damage itself 22:27:09 well, it'd make it fit more thematically with straight tloc spells, i think 22:31:08 -!- medicplz2 has quit [Remote host closed the connection] 22:33:22 -!- alvarops has quit [Quit: Leaving] 22:40:51 -!- read has quit [Quit: bye.] 22:43:10 -!- vale has quit [Ping timeout: 264 seconds] 22:43:10 I don't think there's a need for a high level spell that moves enemies only when disjunction exists 22:44:06 call it conjunction 22:44:15 I'll just call it "cblink" 22:44:38 that's a terrible name 22:45:00 ok, slightly longer: Controlled Blink 22:45:35 love it 22:45:45 -!- travis-ci has joined ##crawl-dev 22:45:46 The build was broken. (master - d5b76e1 #2849 : gammafunk): http://travis-ci.org/crawl/crawl/builds/67301062 22:45:46 -!- travis-ci has left ##crawl-dev 22:46:02 what!!! 22:46:29 travis you've betrayed me 22:46:54 -!- read has joined ##crawl-dev 22:46:56 -!- Ironfoot has joined ##crawl-dev 22:47:41 -!- Blazinghand has quit [Read error: Connection reset by peer] 22:48:05 -!- Blazinghand has joined ##crawl-dev 22:50:56 -!- Ironfoot has quit [Client Quit] 22:53:36 -!- panicbit has quit [Ping timeout: 265 seconds] 22:53:54 -!- _miek has quit [Quit: Lost terminal] 22:54:23 -!- edgefigaro_ has quit [Ping timeout: 246 seconds] 22:56:09 et tu travis 22:57:00 -!- amalloy is now known as amalloy_ 22:58:23 Felid EE spawn without Stones 13https://crawl.develz.org/mantis/view.php?id=9792 by bcadren 22:58:39 -!- _miek has joined ##crawl-dev 23:04:09 -!- Moanerette has quit [Quit: Page closed] 23:04:38 -!- mamgar has quit [Read error: Connection reset by peer] 23:05:57 -!- debo has joined ##crawl-dev 23:11:00 -!- debo has quit [Ping timeout: 265 seconds] 23:12:14 -!- edgefigaro has quit [Ping timeout: 246 seconds] 23:12:35 -!- sk3 is now known as ktgrey 23:16:48 -!- rossi has quit [Ping timeout: 252 seconds] 23:17:25 -!- st_ has quit [Ping timeout: 256 seconds] 23:23:14 -!- mizu_no__ has quit [Client Quit] 23:24:47 -!- coledot has joined ##crawl-dev 23:38:11 -!- Cacophony has quit [Quit: Leaving] 23:41:26 anyone know if Bad Things will happen if I manually kill console games from the server? 23:42:01 I can take down webtiles easy. I can disable loading new games via console easy. but I don't know the best way to close existing console games 23:42:09 -!- nicolae- has left ##crawl-dev 23:44:32 <|amethyst> kill -HUP should be safe and will force a save, the same as if they disconnect 23:45:29 |amethyst: thanks 23:45:59 -!- mizu_no__ has quit [Quit: Computer has gone to sleep.] 23:46:00 |amethyst: I need to talk to you soon on how to trigger/force updates of really old trunk games 23:46:08 so I can clean up old /usr/games/ 23:46:11 <|amethyst> running out of space for old versions 23:46:14 <|amethyst> aha 23:46:27 <|amethyst> I found a trick that let me put it off a long long time 23:46:39 !lg * cbro s=day(end) -graph:area 23:46:40 78040 games for * (cbro): https://shalott.org/graphs/5093758fc3eb07a62c5a24aeef812a88ecad4881.html 23:46:41 <|amethyst> take all the crawl-git-* binaries that aren't the latest, and strip them 23:46:58 ? 23:47:18 I've been deleting all the crawl-git* binaries in the git repo 23:47:29 and I have ttyrec compression running 4 times a day 23:47:52 <|amethyst> your binaries are around 180 megs-ish? 23:48:04 <|amethyst> strip removes debugging symbols 23:48:23 <|amethyst> which for me took the binaries from ~180 MiB to ~10 MiB each 23:48:39 !!oooooooh 23:48:41 er 23:48:41 <|amethyst> you don't want to do this on the current version, since that will make the backtraces useless 23:48:45 s/!!// 23:49:06 so, anything 0.16 and earlier? 23:49:08 <|amethyst> but for old versions, even if someone does play that version, we don't care much about bug reports 23:49:21 <|amethyst> I left the stable binaries unstripped 23:49:25 <|amethyst> since there are so few of them 23:49:52 <|amethyst> I stripped every crawl-git-* that wasn't the one crawl-latest links too 23:49:54 <|amethyst> s/too/to/ 23:50:01 -!- Textmode has quit [Read error: Connection reset by peer] 23:50:12 <|amethyst> oh, I guess I should do that on CAO 23:50:32 <|amethyst> it's sitting at 93% used 23:50:34 !lg * cbro cv=0.17 23:50:35 No games for * (cbro cv=0.17). 23:50:48 I've been bouncing between 97% and 99% for like 2 weeks 23:50:57 I just haven't had any time to deal with it 23:51:29 I've resorted to ftp-ing old (non-crawl) folders to my home PC and deleting them from the server 23:51:54 -!- MgDark has quit [Quit: ChatZilla 0.9.91.1 [Firefox 38.0.5/20150525141253]] 23:52:14 <|amethyst> have you talked to snark about moving ttyrecs to shallott? 23:52:26 <|amethyst> s/shallott/shalott/ 23:52:53 yea 23:52:57 that's what I'm going to do tonight 23:53:04 I've done it a couple times already 23:53:31 I just have to carve out the time to shut the server down since I don't want to mess with trying to only move part of the files (based on date) 23:53:55 i.e. easier to just shut down. ensure no games are running and no new ones can start. move ALL ttyrecs. delete them all. then restart 23:56:07 -!- edgefigaro has quit [Quit: Page closed] 23:57:08 !lg * cbro cv=0.17-a 23:57:09 16017. slow the Destroyer (L11 NaCj of Sif Muna), mangled by a minotaur (a +2 antimagic quarterstaff) (kmap: labyrinth_mini_lab) in a Labyrinth on 2015-06-18 03:45:53, with 10537 points after 18984 turns and 2:20:13. 23:57:35 !lg * cbro !cv=0.17-a 23:57:36 Broken query near '=0.17-a' 23:57:45 !lg * cbro cv!=0.17-a 23:57:46 62023. musclemanjr the Chopper (L1 MiBe of Trog), quit the game on D:1 (co_arrival_hall_of_pillars) on 2015-06-18 03:31:17, with 0 points after 0 turns and 0:00:07. 23:57:50 -!- chewymouse has joined ##crawl-dev 23:57:55 -!- Textmode has joined ##crawl-dev 23:57:59 !lg * cbro cv~~0.17 23:58:00 16017. slow the Destroyer (L11 NaCj of Sif Muna), mangled by a minotaur (a +2 antimagic quarterstaff) (kmap: labyrinth_mini_lab) in a Labyrinth on 2015-06-18 03:45:53, with 10537 points after 18984 turns and 2:20:13. 23:58:10 !lg * cbro cv~~0.16 23:58:10 36143. musclemanjr the Chopper (L1 MiBe of Trog), quit the game on D:1 (co_arrival_hall_of_pillars) on 2015-06-18 03:31:17, with 0 points after 0 turns and 0:00:07. 23:58:33 !lg * cbro s=day(end),cv -graph:area 23:58:34 78040 games for * (cbro): https://shalott.org/graphs/94e60b2884fa863b86235eb8539be8d54b6b5aca.html 23:58:41 Unstable branch on CRAWL.XTAHUA.COM updated to: 0.17-a0-1399-gd5b76e1 (34) 23:58:56 -!- mibe has quit [Quit: Page closed] 23:59:47 -!- Daekdroom has quit [Quit: Leaving]