00:00:02 -!- omarax has quit [Remote host closed the connection] 00:00:13 seems not 00:00:20 well, i don't think there is, but that's what i'm asking basically 00:00:21 it would be cool to keep all the old amulets as unrands 00:00:44 you see here an ancient amulet of resist mutation {rMut} 00:01:01 It is a long-forgotten relic of a past age. 00:01:02 <|amethyst> and that unrand should be called "hat of the alchemist" :P 00:01:13 amulet of the alchemist... 00:01:29 -!- debo has joined ##crawl-dev 00:01:31 clearly it'd be {rMut, clarity, stasis} 00:01:44 -!- Blazinghand has joined ##crawl-dev 00:01:44 is amulet of rage still a thing 00:02:12 ya 00:02:19 aw 00:02:24 stasis +rage is the best 00:02:48 ?? rare messages 00:02:48 rare messages[1/24]: You're already berserk! 00:02:50 |amethyst: there's a sequence point after &&, right? 00:03:15 |amethyst: eventually that unrand's {} braces will be long enough to crash the game 00:04:40 <|amethyst> amalloy: yes, and stronger than that 00:04:50 <|amethyst> the RHS isn't even evaluated if the LHS is false 00:04:55 sure, of course 00:05:05 03PleasingFungus02 07* 0.18-a0-825-g6a664df: Local tiles: don't duplicate floor items 10(3 minutes ago, 1 file, 3+ 3-) 13https://github.com/crawl/crawl/commit/6a664df5ee2c 00:05:23 i just wanted to make sure i wasn't invoking anything nasty with: bool x; return foo(bar, &x) && x; 00:05:54 That commit message makes the bug sound way cooler than it actually is 00:05:59 sorry :( 00:06:05 was running sort of commit title space 00:06:09 *short 00:06:15 sadly, nothing about local tiles is cool. 00:06:57 where are the emojis, pf 00:08:03 NOTHING about local tiles is cool 00:08:30 can't you express that sentiment in the form... of an emoji??? 00:09:06 03PleasingFungus02 07* 0.18-a0-826-g6050cbe: Local tiles: fix 'next page' button on pages >= 1 10(41 seconds ago, 1 file, 4+ 2-) 13https://github.com/crawl/crawl/commit/6050cbec84c6 00:09:25 CanOfWorms: It is finished. 00:11:12 -!- kazimuth has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 00:11:29 :o 00:12:25 That code is still bugged, but, if God is merciful, I shall never touch it again. 00:12:26 Amen. 00:12:45 !send PleasingFungus the terrible wrath of No God 00:12:46 Sending the terrible wrath of No God to PleasingFungus. 00:13:41 nooo 00:16:14 is there some operator or function X in C++ (or in crawl) such that a X b is the same as a ? a : b 00:16:28 like i have two pointers, and want the first one unless it's null in which case i want the second 00:17:23 in lisp this would just be (or a b), and similarly in python or ruby i think 00:17:40 <|amethyst> there is not 00:18:35 hm? (a || b) 00:18:44 possibly not in C++ 00:18:46 <|amethyst> in C++ a || b gives a boolean 00:18:49 C would let ou do it 00:18:53 <|amethyst> in C too 00:19:04 <|amethyst> it gives an integer that is either 0 or 1 00:19:21 -!- Xenobreeder has quit [Ping timeout: 252 seconds] 00:19:37 right, it's useful for truthiness but not for an actual object 00:19:46 oh C finally got around to doing that? 00:19:51 <|amethyst> ? 00:19:52 back in the 70s, yeah 00:20:11 I know K&R allowed it, thought ANSI was permitting it for historical reasons 00:20:17 <|amethyst> allowed what? 00:20:36 letting || return the left value instead of coercing to 0/1 00:21:07 it never has 00:21:37 oh. for ints it might. i think the standard only guarantees you get a non-zero 00:21:52 so you can't count on it giving you the left-hand-side but you might get it anyway 00:22:46 right. most K&R compilers did the minimal thing though so just passing on a "true" left value, because it meant less code generated 00:23:04 <|amethyst> ANSI says "The && operator shall yield 1 if both of its operands compare 00:23:06 <|amethyst> unequal to 0, otherwise it yields 0. The result has type int." 00:23:10 <|amethyst> C89 that is 00:23:37 * geekosaur has not kept close tabs. a lot of heinous K&R behavior was tacitly accepted by early versions though 00:23:38 * Sequell also has not kept close tabs. a lot of heinous K&R behavior was tacitly accepted by early versions though 00:23:49 *thwap* 00:24:20 just so older code would still compile 00:24:42 and behave "as expected" i.e. as it used to on platform X 00:25:32 -!- vev has quit [Remote host closed the connection] 00:25:48 (BCPL more or less encouraged that kind of thing...) 00:26:01 <|amethyst> obviously the solution is to declare: 00:26:36 <|amethyst> a && b has undefined behaviour whenever a, or b, or both, has a value other than integer 0 or 1 00:26:45 <|amethyst> that's the C way 00:27:04 well, the ANSI C way >.> 00:27:21 it really makes one ANSI. 00:28:34 so, wielding a -Tele item while you have the Tele status doesn't cancel the status, but does ask if you really want to wield it. then, when the tele goes off, you feel a sense of stasis. is that the desired behavior? 00:28:35 (it's 2015, can we remove the remaining bits of the BCPL horror show from C now?) 00:28:54 that is, you feel stasis instead of actually teleporting 00:29:36 It doesn't sound fundamentally unreasonable. 00:29:44 <|amethyst> cancelling the status immediately wouldn't be terrible either 00:29:46 also, can unrands have -Tele on them? 00:29:50 <|amethyst> oh 00:29:55 er, randarts 00:29:58 <|amethyst> I guess I see the reason 00:30:00 i know unrands can and do 00:30:10 I believe so. 00:30:15 <|amethyst> if you get tele status from the monster, the current behaviour keeps you from just swapping in-and-out 00:30:22 <|amethyst> s/the mons/a mons/ 00:30:34 <|amethyst> then again, so would a penalty like contam etc 00:35:03 hm 00:35:09 is pubby's swamp ever going anywhere? 00:38:04 so the thing that got me started on stasis cleanup is that the % menu shows Stasis . at all times for all races except Fo, for whom it always shows Stasis + or whatever. i plan to just remove stasis from that menu entirely; should i do anything about clarity while i'm in there? 00:38:52 <|amethyst> err 00:39:09 <|amethyst> %git b57974555 00:39:09 07MarvinPA02 * 0.18-a0-819-gb579745: Adjust display of amulet effects on % screen 10(34 hours ago, 1 file, 45+ 27-) 13https://github.com/crawl/crawl/commit/b57974555b66 00:39:28 <|amethyst> I guess you could hide it for formicids as well 00:39:45 probably only needs to be on the A screen 00:42:49 right 00:43:06 !tell Grunt // XXX: Actual blood curse effect for Boris? - bwr 00:43:07 PleasingFungus: OK, I'll let grunt know. 00:43:22 !source mon-project.cc:268 00:43:22 https://github.com/crawl/crawl/blob/master/crawl-ref/source/mon-project.cc#l268 00:43:24 Can we talk about this 00:43:43 -!- ystael has quit [Ping timeout: 272 seconds] 00:44:53 -!- Zeor has quit [Quit: Leaving.] 00:45:12 -!- WTFace has quit [] 00:45:52 !source ::inaccuracy 00:45:53 Can't find ::inaccuracy. 00:45:58 !source player::inaccuracy 00:45:59 1/1. https://github.com/crawl/crawl/blob/master/crawl-ref/source/player.cc#l8523 00:46:07 lol 00:47:20 <|amethyst> err 00:47:25 PleasingFungus: if you are wearing an amulet of inaccuracy, or missing an eye, or both, the initial angle of your IOOD is distorted by twice (or four times) as much as usual 00:47:37 <|amethyst> I have another concern 00:47:45 <|amethyst> int inaccuracy = caster->inaccuracy(); 00:47:45 <|amethyst> if (caster && inaccuracy > 0) 00:47:54 03PleasingFungus02 07* 0.18-a0-827-gba75ecd: Don't give XP for reset monsters (10161) 10(75 seconds ago, 1 file, 5+ 2-) 13https://github.com/crawl/crawl/commit/ba75ecdd1cc0 00:47:59 <|amethyst> looks like that caster && was supposed to protect something 00:47:59 heh 00:48:02 Yes the check for caster being non-null is interesting 00:48:08 looks well-intended 00:48:10 <|amethyst> it's hard to travel back in time 00:48:25 of course, that entire if has no reason to exist 00:48:34 the second part is just as pointless 00:48:42 oh nvm I'm illiterate 00:48:46 If inaccuracy is 0 then tan would be set to 0 00:48:52 ??oops 00:48:53 pleasingfungus[1/25]: oops 00:49:12 -!- twelwe has quit [Quit: Page closed] 00:49:19 Although, from a player perspective, I would like to have that if gone :P 00:49:25 if (we somehow did not dump core...) 00:49:48 !dump geekosaur 00:49:49 No where information for geekosaur. 00:50:01 * geekosaur is nowhere 00:50:01 * Sequell also is nowhere 00:50:05 man, I never did merge in mu's big mon-project rewrite... :( 00:50:11 rip 00:51:17 anyway, I sincerely don't care about that silly inacc/iood interaction one way or another. could leave it, could remove it, could leave it but with a reduced effect. 00:51:42 -!- CanOfWorms has quit [Ping timeout: 265 seconds] 00:53:24 It's just weird 00:53:42 Inaccuracy doesn't affect anything else that ignores EV 00:54:10 let alone by making it less likely to even enter the target monster's square 00:54:18 -!- Mercuria1Alchemi has quit [Ping timeout: 255 seconds] 00:55:54 inacc already is special-cased to affect spell accuracy, even though -slay doesn't. 00:56:06 this feels like an extension of that. 00:56:45 so why doesn't inacc widen the spread of iron rod? 00:57:11 IOOD spread isn't accuracy 00:57:32 It reduces the accuracy of the iron rod shots. 00:57:35 They're not automatic hit. 00:58:12 Well, to be consistent with that, then it shouldn't widen the IOOD spread, it should instead make it easier to block with a shield 00:58:34 clearly the solution is to make IOOD check ev 00:58:52 but whatever, this situation only ever occurs in actual games if you use a bad spell with a specific fixedart anyway 00:59:17 I don't think it's a big deal either way. I think it's sort of funny, so I'm not going to remove it, but if someone else did, I would not shed tears. 00:59:24 Maybe like, one tiny tear. 00:59:39 -!- vale_ has quit [Remote host closed the connection] 01:00:02 -!- omarax has quit [Remote host closed the connection] 01:02:53 Unstable branch on crawl.s-z.org updated to: 0.18-a0-827-gba75ecd (34) 01:03:23 It's pretty impossible to figure out that it exists in actual games, even with min spellpower and double inaccuracy you don't miss by more than 90 degrees 01:03:46 and casting iood with 10 spellpower is pretty hard 01:04:03 <|amethyst> multiplying the tangent can't make you miss by more than 90 degrees 01:04:11 exactly 01:05:36 also, explain how "Can cast either from left or right hand" applies to orb spiders, octopodes, and characters that sacrificed a hand 01:07:45 absolutely not 01:07:51 I refuse 01:07:51 <|amethyst> that comment pre-dates all of those things of course 01:08:30 <|amethyst> what I think minmay is getting at (unless it's just "remove IOOD", which does seem likely): would it really hurt to remove the fuzzing? 01:08:51 <|amethyst> would IOOD be overpowered without it? 01:09:41 <|amethyst> not just inacc fuzzing I mean 01:10:09 Would it be a more or less interesting spell? 01:10:22 would it still wiggle if you cast it in a hallway 01:13:25 New branch created: pull/202 (4 commits) 13https://github.com/crawl/crawl/pull/202 01:13:26 03amalloy02 07https://github.com/crawl/crawl/pull/202 * 0.18-a0-828-g009684c: Clean up stasis_blocks_effect now that it's only for Fo 10(20 minutes ago, 7 files, 15+ 39-) 13https://github.com/crawl/crawl/commit/009684ccc008 01:13:26 03amalloy02 07https://github.com/crawl/crawl/pull/202 * 0.18-a0-829-g8ea5b86: Turn a few if/else trees into boolean expressions 10(19 minutes ago, 2 files, 4+ 14-) 13https://github.com/crawl/crawl/commit/8ea5b86534ac 01:13:26 03amalloy02 07https://github.com/crawl/crawl/pull/202 * 0.18-a0-830-g8cd6cc5: Remove Stasis from % menu 10(19 minutes ago, 1 file, 11+ 10-) 13https://github.com/crawl/crawl/commit/8cd6cc54e42e 01:13:26 03amalloy02 07https://github.com/crawl/crawl/pull/202 * 0.18-a0-831-g15b2b92: Remove an old reference to amulet of stasis 10(18 minutes ago, 1 file, 1+ 2-) 13https://github.com/crawl/crawl/commit/15b2b92b7b8f 01:14:30 kvaak: it's not clear to me. 01:14:37 this code is... sketchy. 01:16:59 <|amethyst> amalloy: you have some K&R braces: if (!you.stasis()) { 01:17:16 ah, right 01:17:29 <|amethyst> amalloy: also, you don't need that nested if inside that 01:17:40 <|amethyst> amalloy: the if (notele || rrtel) layer is useless now 01:17:51 <|amethyst> amalloy: which also means you don't need the variables 01:18:02 er, i don't think that's true 01:18:15 the outer if is entered if you don't have stasis, so either of those things can be true 01:18:25 <|amethyst> I mean inside that 01:18:52 right, inside that you are known not to have stasis, btu you might have notele or rtele 01:19:03 <|amethyst> I mean these lines 01:19:08 <|amethyst> + if (notele || rrtel) 01:19:08 <|amethyst> + { 01:19:09 <|amethyst> + if (notele) 01:19:09 <|amethyst> + out += _resist_composer("NoTele", cwidth, 1, 1, false) + "\n"; 01:19:11 <|amethyst> + else if (rrtel) 01:19:14 <|amethyst> + out += _resist_composer("Rnd*Tele", cwidth, 1, 1, false) + "\n" 01:19:17 <|amethyst> ; 01:19:19 <|amethyst> + } 01:19:22 <|amethyst> that if (notele || rrtel) seems pointless 01:19:28 <|amethyst> because the stuff inside would already do nothing if those are both false 01:19:35 -!- ussdefiant has joined ##crawl-dev 01:19:56 oh, i see 01:20:00 got it 01:20:28 <|amethyst> (and then notele and rrtel are used just once, so might as well do just if (you.no_tele(calc_unid)) etc and avoid the vars) 01:20:33 right 01:20:43 PS what the hell is this !!player_teleport 01:20:47 is this javascript 01:20:51 -!- iFurril has quit [Ping timeout: 255 seconds] 01:21:03 <|amethyst> shorter than (bool) 01:21:21 <|amethyst> and unnecessary here anyway, given how it's currently used 01:21:25 right 01:21:42 <|amethyst> maybe at one point it was used in a way that would have displayed e.g. ++++++ if it were > 1 01:23:16 |amethyst: anything else before i merge it? 01:23:38 03amalloy02 07https://github.com/crawl/crawl/pull/202 * 0.18-a0-830-g5ab5831: Remove Stasis from % menu 10(29 minutes ago, 1 file, 4+ 7-) 13https://github.com/crawl/crawl/commit/5ab583148be8 01:23:38 03amalloy02 07https://github.com/crawl/crawl/pull/202 * 0.18-a0-831-g9ee93d6: Remove an old reference to amulet of stasis 10(29 minutes ago, 1 file, 1+ 2-) 13https://github.com/crawl/crawl/commit/9ee93d6bc069 01:28:16 -!- FireSight has quit [] 01:28:17 <|amethyst> amalloy: hm 01:29:23 <|amethyst> amalloy: in stasis_blocks_effect: const bool blocked = you.stasis(); 01:32:42 -!- simmarine has quit [Read error: Connection reset by peer] 01:34:06 <|amethyst> amalloy: I'd almost consider making it take something other than a string, since right now there are only three distinct values used 01:34:15 |amethyst: you made me realize: the only use of stasis_blocks_effect() now vs you.stasis() is that the former prints a message. so the one place that was calling s_b_e() with nullptr to suppress printing can just call you.stasis() instead 01:34:35 <|amethyst> amalloy: ah, yes 01:34:37 so that's 2 distinct values 01:34:43 <|amethyst> amalloy: and then you can use a bool 01:34:46 <|amethyst> bool ishaste 01:34:47 well 01:34:53 i think that's worse 01:35:24 which reads better? stasis_blocks_effect("You cannot haste."); vs stasis_blocks_effect(true); 01:35:35 <|amethyst> stasis_blocks_haste() 01:35:45 <|amethyst> actually, none of the above 01:35:52 <|amethyst> given that it sounds like a predicate 01:35:55 <|amethyst> but has a side effect 01:36:11 well crawl is full of effectful predicates 01:36:25 i would be happy to rename while i'm here though 01:37:58 |amethyst: do you remember, off the top of your head, what happens when you get a sighup while quaffing xp? 01:38:32 i'll find out for you if you want! 01:38:33 I'm trying to figure out if skill_menu_flags are marshalled anywhere. I *think* not? 01:38:50 though I guess it wouldn't matter anyway 01:38:58 chequers: if it sounds fun! 01:39:00 -!- agentgt has quit [Ping timeout: 246 seconds] 01:39:15 <|amethyst> PleasingFungus: trying to remember... it's either an uncancellable, or it detects that you are in the middle of !exp by numbers being wrong? 01:39:23 haha 01:39:37 <|amethyst> hm, not an uncancellable 01:40:00 03PleasingFungus02 07* 0.18-a0-828-ge33d536: Remove support for the Experience card 10(22 seconds ago, 3 files, 10+ 17-) 13https://github.com/crawl/crawl/commit/e33d5365696c 01:40:36 <|amethyst> hmm 01:40:51 <|amethyst> maybe we don't do anything special about hangup there 01:43:19 |amethyst: check_stasis()? still sounds like it returns true if stasis applies, but doesn't sound as pure 01:43:37 -!- ontoclasm has quit [Quit: Leaving.] 01:44:25 notify_stasis() 01:46:53 <|amethyst> hm 01:50:18 !vault ossuary_due_cavern 01:50:18 1/1. https://github.com/crawl/crawl/blob/master/crawl-ref/source/dat/des/portals/ossuary.des#l1030 01:50:36 -!- mumbologist has quit [Ping timeout: 240 seconds] 01:50:50 -!- mumbologist_ is now known as mumbologist 01:51:15 <|amethyst> amalloy: I guess check_stasis() sounds the best to me of those 01:51:55 what do you want to do about the haste special case, then? check_stasis("You cannot haste.") since it's clearly effectful? or something else? 01:55:49 <|amethyst> sounds reasonable... could maybe make a constant for "You cannot haste." since it appears twice, but maybe that's overkill 01:58:09 |amethyst: interesting that it's only twice. what if i make it worth your while by changing the reason in PotionHaste so it appears three times, and then make it a constant 01:59:01 plus i forgot the . at the end once already, so i am in favor of making it a constant anyway 02:00:02 -!- omarax has quit [Remote host closed the connection] 02:00:04 <|amethyst> :) 02:00:11 -!- Bcadren has quit [Ping timeout: 260 seconds] 02:01:48 <|amethyst> amalloy: hm, where in PotionHaste? 02:01:54 potion.cc 02:01:58 did i spell it wrong? 02:01:59 <|amethyst> I mean 02:02:00 oh 02:02:07 i mean change the reason text 02:02:07 <|amethyst> it doesn't call stasis_blocks_effect 02:02:22 <|amethyst> ah 02:02:49 to "You cannot haste.", and then that string will appear 3 times, justifying a constification 02:04:09 -!- mumbologist has quit [Ping timeout: 272 seconds] 02:04:33 i'm not sure where to put that string, though. it's used in evoke.cc, spt-cast.cc, and (soon) potion.cc 02:05:04 <|amethyst> item_use.h ? 02:05:36 <|amethyst> along with the other message in case you need to explicitly pass it for some reason 02:06:23 oh. that makes sense, sure 02:06:58 |amethyst: would the crawl style here be a #define or a const? i can't easily find an example 02:07:49 <|amethyst> we tend to use #defines for property keys anyway 02:08:25 <|amethyst> a const would work, but in that case I would explicitly make it extern 02:08:50 <|amethyst> so that you don't risk getting one copy for every source file that includes that header 02:09:10 <|amethyst> (make it extern and define it in a .cc file) 02:09:22 right 02:09:28 i'd rather #define anyway 02:09:28 <|amethyst> oh huh 02:09:39 <|amethyst> we do use constants for a few keys 02:09:43 <|amethyst> the gozag ones mostly 02:09:52 i think freeze time uses a constant too 02:11:02 -!- AreBrandon has joined ##crawl-dev 02:12:59 |amethyst: I think those are my fault 02:14:43 -!- travis-ci has joined ##crawl-dev 02:14:44 The build has errored. (master - 6050cbe #4240 : Nicholas Feinberg): https://travis-ci.org/crawl/crawl/builds/97378092 02:14:44 -!- travis-ci has left ##crawl-dev 02:16:28 -!- PleasingFungus has quit [Quit: ChatZilla 0.9.92 [Firefox 42.0/20151029151421]] 02:19:21 -!- tensorpudding has quit [Ping timeout: 255 seconds] 02:20:50 03amalloy02 07https://github.com/crawl/crawl/pull/202 * 0.18-a0-828-g83f4911: Clean up stasis_blocks_effect now that it's only for Fo 10(87 minutes ago, 8 files, 20+ 41-) 13https://github.com/crawl/crawl/commit/83f49116df92 02:20:50 03amalloy02 07https://github.com/crawl/crawl/pull/202 * 0.18-a0-829-g705db7d: Turn a few if/else trees into boolean expressions 10(86 minutes ago, 2 files, 4+ 14-) 13https://github.com/crawl/crawl/commit/705db7d36f7d 02:20:50 03amalloy02 07https://github.com/crawl/crawl/pull/202 * 0.18-a0-830-g3d0e463: Remove an old reference to amulet of stasis 10(86 minutes ago, 1 file, 1+ 2-) 13https://github.com/crawl/crawl/commit/3d0e463bf45a 02:20:50 03amalloy02 07https://github.com/crawl/crawl/pull/202 * 0.18-a0-831-gde506b5: Remove Stasis from % menu 10(86 minutes ago, 1 file, 4+ 7-) 13https://github.com/crawl/crawl/commit/de506b51e9fe 02:21:01 -!- FIQ has quit [Quit: ZNC - http://znc.in] 02:21:03 the rebase spam is real 02:21:39 -!- mineral has joined ##crawl-dev 02:24:26 -!- read has quit [Ping timeout: 240 seconds] 02:24:33 -!- Gorgo has quit [Quit: This computer has gone to sleep] 02:28:04 so incidentally, it looks like even before my changes, when a Fo attempts to quaff an unknown !haste, they are told it was !haste but don't actually waste the potion 02:29:01 i don't know if this changed at all with the Stasis removal or if it's always been this way but it seems weird compared to all the other this-doesnt-work items 02:29:19 it doesn't even cost them a turn 02:32:12 -!- elliptic has quit [Ping timeout: 246 seconds] 02:32:24 -!- nimitz has quit [Ping timeout: 255 seconds] 02:32:28 <|amethyst> yeah, should be if (was_known && !check_known_quaff()) 02:33:32 -!- dtsund has quit [Remote host closed the connection] 02:33:39 yeah, that fixes it 02:33:43 i'll add that too and commit everything 02:36:08 03amalloy02 07https://github.com/crawl/crawl/pull/202 * 0.18-a0-832-g73bdc8a: Allow Fo to quaff !haste if they don't know what it is 10(2 minutes ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/73bdc8ad3b8b 02:36:38 03amalloy02 07* 0.18-a0-829-g4f60bb4: Clean up stasis_blocks_effect now that it's only for Fo 10(2 hours ago, 8 files, 20+ 41-) 13https://github.com/crawl/crawl/commit/4f60bb419683 02:36:38 03amalloy02 07* 0.18-a0-830-ge22c555: Turn a few if/else trees into boolean expressions 10(2 hours ago, 2 files, 4+ 14-) 13https://github.com/crawl/crawl/commit/e22c555f1301 02:36:38 03amalloy02 07* 0.18-a0-831-gc75d9d5: Remove an old reference to amulet of stasis 10(2 hours ago, 1 file, 1+ 2-) 13https://github.com/crawl/crawl/commit/c75d9d54b3c7 02:36:38 03amalloy02 07* 0.18-a0-832-g07751a7: Remove Stasis from % menu 10(2 hours ago, 1 file, 4+ 7-) 13https://github.com/crawl/crawl/commit/07751a78c59e 02:36:38 03amalloy02 07* 0.18-a0-833-gaaf0859: Allow Fo to quaff !haste if they don't know what it is 10(2 minutes ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/aaf0859502f4 02:38:56 -!- AreBrandon has quit [Ping timeout: 240 seconds] 02:41:47 -!- Hosg has quit [Ping timeout: 252 seconds] 02:44:28 -!- elliptic has joined ##crawl-dev 02:45:01 -!- Patashu has joined ##crawl-dev 02:49:53 -!- travis-ci has joined ##crawl-dev 02:49:54 The build has errored. (master - ba75ecd #4241 : Nicholas Feinberg): https://travis-ci.org/crawl/crawl/builds/97381418 02:49:54 -!- travis-ci has left ##crawl-dev 02:50:50 -!- kazimuth has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 02:51:40 -!- beogh has quit [Ping timeout: 252 seconds] 02:56:31 -!- Dingle has quit [Quit: Leaving] 03:00:02 -!- omarax has quit [Remote host closed the connection] 03:01:40 <|amethyst> hm 03:02:11 <|amethyst> Grunt: I wonder if there's a simple way to tell Travis that we don't need those gcc 4.7 packages for the clang builds 03:12:25 -!- tksquared_ has quit [Ping timeout: 250 seconds] 03:15:07 -!- gressup has quit [Read error: Connection reset by peer] 03:15:20 Unstable branch on crawl.beRotato.org updated to: 0.18-a0-833-gaaf0859 (34) 03:31:53 -!- zz_r04r is now known as r04r 03:32:48 -!- WalkerBoh has quit [Remote host closed the connection] 03:38:11 -!- MgDark has quit [Ping timeout: 260 seconds] 03:40:36 -!- GauHelldragon has quit [Ping timeout: 240 seconds] 03:41:09 -!- agentgt has quit [Ping timeout: 256 seconds] 03:44:01 -!- ystael has quit [Ping timeout: 260 seconds] 03:44:02 -!- Foamed has quit [Quit: Leaving] 03:50:05 -!- Blazinghand has quit [Read error: Connection reset by peer] 03:51:21 -!- ussdefiant has quit [Ping timeout: 256 seconds] 03:56:31 -!- mango_lives has quit [Read error: Connection reset by peer] 03:59:44 -!- Lohengramm has quit [Ping timeout: 250 seconds] 04:00:03 -!- omarax has quit [Remote host closed the connection] 04:02:18 -!- Lohengramm has joined ##crawl-dev 04:06:54 -!- Lohengramm has quit [Ping timeout: 255 seconds] 04:10:28 -!- Lohengramm has joined ##crawl-dev 04:17:15 -!- Lohengramm has quit [Ping timeout: 255 seconds] 04:32:26 -!- st_ has quit [Ping timeout: 260 seconds] 04:40:14 -!- Lohengramm has joined ##crawl-dev 04:45:16 -!- Wolfechu has quit [Ping timeout: 260 seconds] 04:54:10 -!- Ququman has joined ##crawl-dev 05:00:03 -!- omarax has quit [Remote host closed the connection] 05:00:26 -!- uJellie has quit [Ping timeout: 260 seconds] 05:12:30 -!- us17 has quit [Ping timeout: 246 seconds] 05:17:19 -!- siepu has quit [Ping timeout: 272 seconds] 05:20:20 -!- royiv has quit [Ping timeout: 250 seconds] 05:21:07 -!- royiv_ has quit [Ping timeout: 272 seconds] 05:31:10 -!- sanka has quit [Ping timeout: 252 seconds] 05:33:06 -!- ololoev has quit [Quit: Page closed] 05:41:47 -!- agentgt has quit [Ping timeout: 240 seconds] 05:49:37 -!- Dixlet has quit [Ping timeout: 272 seconds] 05:52:52 -!- mineral has quit [Read error: Connection reset by peer] 05:53:16 -!- mineral has joined ##crawl-dev 05:56:34 -!- radinms has quit [Ping timeout: 256 seconds] 06:00:02 -!- omarax has quit [Remote host closed the connection] 06:08:55 -!- ProzacElf has quit [Ping timeout: 240 seconds] 06:10:35 -!- ystael has quit [Ping timeout: 240 seconds] 06:16:58 -!- siepu has quit [Ping timeout: 265 seconds] 06:24:52 -!- travis-ci has joined ##crawl-dev 06:24:53 The build has errored. (master - aaf0859 #4247 : Alan Malloy): https://travis-ci.org/crawl/crawl/builds/97391607 06:24:53 -!- travis-ci has left ##crawl-dev 06:25:29 -!- amalloy is now known as amalloy_ 06:40:12 -!- mibe has quit [Quit: Page closed] 06:48:08 -!- radinms_ has quit [Ping timeout: 256 seconds] 06:48:09 -!- Lasty has joined ##crawl-dev 06:48:28 -!- mineral has quit [Read error: Connection reset by peer] 06:48:44 -!- Lohengramm has quit [Ping timeout: 246 seconds] 06:48:54 -!- mineral has joined ##crawl-dev 06:53:06 -!- mopl has quit [Ping timeout: 252 seconds] 06:56:32 -!- Patashu has quit [Ping timeout: 255 seconds] 06:57:52 -!- Shard1697 has joined ##crawl-dev 07:00:01 -!- omarax has quit [Remote host closed the connection] 07:05:45 -!- starbutterfly has quit [Ping timeout: 252 seconds] 07:08:32 -!- Bergkatze has quit [Ping timeout: 256 seconds] 07:33:33 -!- Lohengramm has joined ##crawl-dev 07:43:20 -!- KurzedMetal has quit [Read error: Connection reset by peer] 07:44:14 -!- agentgt has quit [Ping timeout: 256 seconds] 07:56:36 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 08:00:00 -!- CKyle has joined ##crawl-dev 08:00:02 -!- omarax has quit [Remote host closed the connection] 08:00:44 -!- Lasty has quit [Quit: Leaving.] 08:07:17 -!- Lohengramm has quit [] 08:07:27 -!- Lohengramm has joined ##crawl-dev 08:10:24 -!- yottam has joined ##crawl-dev 08:10:56 picking up ammy of harm doesn't turn off autopickup for it 08:24:52 -!- Dixlet has joined ##crawl-dev 08:36:10 -!- Amnesiac is now known as Guest46756 08:36:27 -!- Guest46756 is now known as cang 08:37:56 -!- ystael has quit [Ping timeout: 246 seconds] 08:46:36 -!- rossimo_ has quit [Remote host closed the connection] 08:57:09 -!- Tux[Qyou] has joined ##crawl-dev 09:00:02 -!- omarax has quit [Remote host closed the connection] 09:13:03 03wheals02 07* 0.18-a0-834-gb7c8ea3: Give a debug message a more appropriate colour. 10(11 minutes ago, 1 file, 5+ 8-) 13https://github.com/crawl/crawl/commit/b7c8ea3f088d 09:15:07 -!- mineral has quit [Read error: Connection reset by peer] 09:15:31 -!- mineral has joined ##crawl-dev 09:26:44 -!- CKyle has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 09:37:45 -!- Daekdroom has quit [Quit: Leaving] 09:51:37 03gammafunk02 07* 0.18-a0-835-g1546f68: Two Pakellas overflow vaults 10(4 days ago, 1 file, 277+ 0-) 13https://github.com/crawl/crawl/commit/1546f68b0f7e 09:52:08 -!- Nattefrost has quit [Ping timeout: 246 seconds] 09:53:04 !tell Grunt I finally finished those two overflows in 1546f68; I'll do at least one more, and feel free to add other "experiments" or otherwise tweak that des file if you're so inclined 09:53:05 gammafunk: OK, I'll let grunt know. 09:54:32 geekosaur: if you're still working on your pak "experiment" vault, feel free to incorporate into that file if it will work; I have a message function for triggers at the experiment end and beginning 09:54:49 I'm sure there's one more experiment I can conduct...just have to think of what 09:55:10 still "working" on it but mostly at testing (and not having proper time for same) 09:55:32 -!- 5EXAAIMBL has joined ##crawl-dev 09:55:33 <5EXAAIMBL> The build passed. (master - b7c8ea3 #4248 : Shmuale Mark): https://travis-ci.org/crawl/crawl/builds/97454260 09:55:33 -!- 5EXAAIMBL has left ##crawl-dev 09:55:42 thanks 5EXAAiMBL 09:55:45 s/i/I/ 09:55:59 wait, "5EX"...are we being trolled 10:00:02 -!- omarax has quit [Remote host closed the connection] 10:00:13 -!- cmcbot has quit [Remote host closed the connection] 10:01:33 .gfgk -2 10:01:34 62/63. Modulate the Ruinous (L20 DECj of Vehumet), splashed by a moon troll's acid in WizLab (wizlab_lehudib) on 2015-12-17 01:11:07, with 295889 points after 66683 turns and 3:25:26. 10:01:40 -!- scummos__ has quit [Ping timeout: 272 seconds] 10:02:04 .moon name=modulate -tv:channel=moon:>$ 10:02:05 2. Modulate, XL19 DECj, T:65249 (milestone) requested for moon: telnet://termcast.develz.org or http://termcast.develz.org. 10:08:40 yesss 10:10:43 .moon name=mia -tv:channel=moon:>$ 10:10:44 1. mia, XL14 HuBe, T:26619 (milestone) requested for moon: telnet://termcast.develz.org or http://termcast.develz.org. 10:14:42 are you over the moon? 10:15:15 I liked the Modulate one 10:15:40 DE with firestorm reads teleport after getting a ton of temp mutations, lands next to moon troll 10:16:13 -!- CKyle has joined ##crawl-dev 10:17:37 firestorm doesn't make you invulnerable?! 10:18:05 He certainly caused enough noise with it 10:19:28 If you're going to teleport randomly, you gotta have defenses. 10:19:32 -!- mong has quit [Client Quit] 10:21:29 -!- FIQ is now known as Guest1505 10:23:12 -!- Zekka has quit [Ping timeout: 272 seconds] 10:23:34 -!- Guest1505 has quit [Changing host] 10:23:44 -!- Guest1505 is now known as FIQ 10:25:37 -!- LexAckson has joined ##crawl-dev 10:27:26 -!- mumbologist has quit [Ping timeout: 240 seconds] 10:27:41 -!- Daekdroom has quit [Quit: Leaving] 10:37:49 -!- travis-ci has joined ##crawl-dev 10:37:50 The build passed. (master - 1546f68 #4249 : gammafunk): https://travis-ci.org/crawl/crawl/builds/97461796 10:37:50 -!- travis-ci has left ##crawl-dev 10:40:59 -!- siepu has quit [Quit: Leaving] 10:51:54 -!- debo has quit [Quit: orb spiders :(] 10:54:04 no 5EX for you 10:54:10 -!- st_ has joined ##crawl-dev 11:00:02 -!- omarax has quit [Remote host closed the connection] 11:00:39 -!- simmarine has joined ##crawl-dev 11:01:47 -!- noisemaker has quit [Client Quit] 11:07:09 I wish Sequell could be queried for unique items worn. I'd love to query win ratio of players wearing hat of the alchemist... 11:08:53 I'm going to go with it being insignificant 11:09:14 could be parsed from morgues of course 11:09:53 yeah, but that's a huge pain in the butt 11:11:40 -!- Celerity has quit [Quit: Nettalk6 - www.ntalk.de] 11:11:41 why do you want to know? 11:11:58 There's a tavern thread asking people to vote on the hat 11:12:08 and I'm wondering what data might exist on the subject 11:12:16 A lot of people value it more than I think they should 11:12:28 I'm not sure what that number would tell anyway, used/found might be somewhat interesting 11:12:37 That would also be interesting, yeah 11:12:50 ??alchemist 11:12:51 alchemist[1/1]: See {alchemist card} or {hat of the alchemist}. 11:12:56 ??hat of the alchemist 11:12:56 hat of the alchemist[1/2]: -2 unrandart hat with rF+ rC+ MR+ rElec rPois rN+ rMut rCorr. 11:13:10 I mean, value it over what? 11:13:19 a +2 helmet 11:13:26 (usually) 11:13:33 <|amethyst> Win ratio is almost certainly going to be better than average 11:13:50 -!- radinms has quit [] 11:13:55 In that, having found the hat, they're a fair ways into the game? 11:13:58 <|amethyst> yeah 11:14:02 yeah 11:14:06 yeah 11:14:10 yeah 11:14:17 <.< >.> 11:14:33 I don't see many characters where I would use +2 helmet over it, even with an ego 11:14:50 Medar: ironically, I feel more or less the opposite 11:15:01 but arguably that's a great place for it to be 11:15:08 -!- waat has quit [Ping timeout: 272 seconds] 11:15:23 some find it valuable, others don't, and presumably various factors affect those valuations from game to game 11:15:31 I guess it depends on what part of the game we are talking about too 11:17:06 maybe I'm just worse at finding other items with good resistances than you are :P 11:17:53 I've gotten relatively used to doing without resistances, aside from having rF+ in Zot:5 so I can get to rF++ w/ !resistance 11:18:34 yeah, for 3 runer it's definately less usefull 11:18:38 yeah 11:18:39 you need less resistances, you have less ac 11:18:51 AC's pretty good 11:19:04 I also don't play a lot of super-high-AC characters 11:19:12 40s is rare for me, much less 50s, 60s, etc. 11:19:15 -!- ussdefiant has joined ##crawl-dev 11:19:30 If I had 50-60 AC, I'd almost certainly use the hat 11:22:18 -!- simmarine has quit [Read error: Connection reset by peer] 11:22:39 -!- ontoclasm has joined ##crawl-dev 11:22:51 I think a lot of it is about volatility too. If you have all the resistances, but less AC you will usually do worse but won't suddenly get into a very dangerous spot 11:23:04 -!- simmarine has joined ##crawl-dev 11:25:21 That's true 11:31:52 it's funny how the hat is the only wearable source of rmut now 11:32:04 what did the unrand rmut ammy in cigotuvi's get replaced with? 11:32:09 !source wizlab_cigotuvi 11:32:09 1/1. https://github.com/crawl/crawl/blob/master/crawl-ref/source/dat/des/portals/wizlab.des#l855 11:32:42 any jewellery good_item...lame 11:32:54 why not artefact 11:33:10 who do I !blame2 11:33:57 <-- 11:34:13 Feel free to spice itup 11:34:15 *up 11:34:20 Heck, make it guaranteed alchemist hat 11:34:28 !recur !blame2 4 Lasty 11:34:29 LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssstttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy... 11:34:55 I should win a HECK witht he alchemist hat 11:35:39 !recur !motto 4 Lasty 11:35:40 LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL! L-LLLLLLLLLLLLL!! L-L-LLLL!!! L-L-L-L!!!! L-L-L-L-Lasty!!!! L-L-L-Lasty!!!! L-L-L-LASTY!!!! L-L-L!!! L-L-L-Lasty!!! L-L-Lasty!!! L-L-LASTY!!!! L-L-L!!! L-L-L-LASTY!!! L-L-LASTY!!! L-L-LASTY!!!! L-LLLL!! L-L-L!!! L-L-L-Lasty!!! L-L-Lasty!!! L-L-LASTY!!! L-L!! L-L-Lasty!! L-Lasty!! L-LASTY!!! L-L!! L-L-LASTY!! L-LASTY!! L-LASTY!!!! L-LLLL!! L-L-L!!! L-L-L-LA... 11:36:13 said the starcursed 4chan mass 11:38:50 -!- GauHelldragon has quit [Ping timeout: 260 seconds] 11:39:31 -!- Celerity__ has quit [Quit: Page closed] 11:44:16 we need more shrikes 11:44:26 so that summon shrikes can be a thing 11:44:35 (mons spell obviously) 11:45:11 then give it to a shrike 11:45:36 shrike shrike 11:48:41 -!- iafm has quit [Quit: leaving] 11:49:31 -!- Gorgo has quit [Quit: This computer has gone to sleep] 11:51:44 <|amethyst> shrikonian caller 11:52:14 <|amethyst> or tengu caller: they do have good summoning apt after all 11:52:19 * geekosaur still has dibs on shrike strike 11:55:26 -!- mopl is now known as mopl_away 11:58:18 03gammafunk02 07* 0.18-a0-836-gf09b4c6: Re-artefactize loot in Cigotuvi's Fleshworks 10(15 minutes ago, 1 file, 5+ 1-) 13https://github.com/crawl/crawl/commit/f09b4c6b79f5 11:59:15 good change 12:00:01 -!- omarax has quit [Remote host closed the connection] 12:04:28 -!- Evablue_ has quit [Quit: Evablue_] 12:05:16 -!- debo has joined ##crawl-dev 12:05:40 -!- LexAckson has quit [Ping timeout: 260 seconds] 12:06:02 -!- SurpriseTRex has quit [Ping timeout: 256 seconds] 12:06:50 -!- GauHelldragon2 has quit [Ping timeout: 260 seconds] 12:10:21 Unstable branch on crawl.akrasiac.org updated to: 0.18-a0-836-gf09b4c6 (34) 12:11:36 -!- Ragnor has quit [Quit: leaving] 12:14:57 -!- Evablue has quit [Client Quit] 12:20:14 -!- Jessika has quit [Quit: Page closed] 12:21:00 -!- ussdefiant has quit [Ping timeout: 272 seconds] 12:23:33 -!- Nattefrost1 has quit [Quit: Leaving.] 12:24:35 -!- Nattefrost has quit [Client Quit] 12:31:53 -!- Gorgo has quit [Read error: Connection reset by peer] 12:40:34 -!- Gorgo has quit [Quit: This computer has gone to sleep] 12:41:12 -!- tollymain has joined ##crawl-dev 12:49:43 -!- molotove has quit [Quit: Leaving.] 13:00:02 -!- omarax has quit [Remote host closed the connection] 13:09:15 -!- wheals has joined ##crawl-dev 13:09:53 -!- Nattefrost has quit [Read error: Connection reset by peer] 13:13:55 -!- GauHelldragon3 has quit [Ping timeout: 260 seconds] 13:15:03 -!- amalloy_ is now known as amalloy 13:15:50 huh 13:16:01 how did spambots get the secret list email 13:16:54 wheals: Grunt is a spambot 13:19:08 wheals: PF said something about sending the list to something awful. Maybe someone over there decided to be an ass. 13:20:59 or spambots harvested it? 13:30:37 isn't it moderated 13:30:45 (the list i mean) 13:30:52 i just mean, it's obviously not secret enough :P 13:31:30 nothing you can access over the open Internet is secret 13:36:45 -!- AreBrandon has joined ##crawl-dev 13:38:51 -!- Zekka has quit [Ping timeout: 255 seconds] 13:42:24 <|amethyst> the "secret list" is not moderated at all 13:42:27 <|amethyst> it's not even a list 13:42:54 <|amethyst> just an entry in /etc/aliases 13:43:41 <|amethyst> and the list address is just two words, so it would be easy enough for a spambot to find 13:45:47 -!- MarvinPA has joined ##crawl-dev 13:46:00 -!- MgDark has quit [Read error: Connection reset by peer] 13:47:19 -!- Final has quit [Quit: Page closed] 13:53:15 -!- AreBrandon has quit [Ping timeout: 240 seconds] 13:58:25 -!- AreBrandon has joined ##crawl-dev 14:00:02 -!- omarax has quit [Remote host closed the connection] 14:00:08 -!- webfungus has joined ##crawl-dev 14:00:16 Lasty_: I sent the non-secret link to SA. 14:00:50 I only send the secret mailing list to my true friends......... 14:01:00 wheals: want a free commit 14:01:01 -!- mopl_away has quit [Ping timeout: 252 seconds] 14:01:32 is this one of these "first one's free" things 14:01:50 -!- Runn has quit [Quit: Page closed] 14:05:57 -!- Kalir has quit [Changing host] 14:08:49 commits are highly addictive 14:11:36 yeah starting them is a pretty big 14:11:37 !glasses 14:11:38 ( •_•)    ( •_•)>⌐■-■    (⌐■_■) 14:11:40 commitment 14:15:08 -!- Kelb has quit [Quit: Page closed] 14:17:03 wheals: https://github.com/crawl/crawl/commit/b7c8ea3f088d 14:17:11 "completeley_random" 14:17:25 nooooo 14:17:29 travis needs a spell-checker 14:17:50 you can use the power of the WEB to make a commit on github too you know... 14:18:03 -!- LexAckson has joined ##crawl-dev 14:18:27 -!- wheals has quit [Quit: Leaving] 14:18:41 wheals: that sounds pretty crazy. 14:20:06 run all comments through some fake langs and commit that 14:20:41 03PleasingFungus02 07* 0.18-a0-837-gd08d4d7: A completeley random spelling fix 10(5 seconds ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/d08d4d76dc3b 14:20:56 neat, he was right! 14:21:02 this is some powerful tech... 14:21:22 -!- webfungus has quit [Quit: Page closed] 14:32:15 -!- ProzacElf has joined ##crawl-dev 14:33:14 -!- zxc has quit [Read error: Connection reset by peer] 14:36:39 -!- Taq has quit [Quit: Page closed] 14:38:44 -!- amalloy is now known as amalloy_ 14:42:47 -!- Gorgo has quit [Quit: This computer has gone to sleep] 14:46:49 -!- dtsund has joined ##crawl-dev 14:59:53 -!- wheals has joined ##crawl-dev 15:00:02 -!- omarax has quit [Remote host closed the connection] 15:02:46 -!- jefus_ has quit [Read error: Connection reset by peer] 15:04:10 -!- Xenobreeder has joined ##crawl-dev 15:04:11 -!- Kintak has quit [Ping timeout: 260 seconds] 15:04:37 -!- Patashu has joined ##crawl-dev 15:14:31 -!- rossi has quit [Quit: WeeChat 1.3] 15:16:58 -!- amalloy_ is now known as amalloy 15:24:36 -!- tensorpudding has quit [Ping timeout: 255 seconds] 15:35:51 -!- Zekka has quit [Ping timeout: 255 seconds] 15:39:15 -!- Patashu has quit [Ping timeout: 272 seconds] 15:46:06 -!- Zekka has quit [Ping timeout: 240 seconds] 15:51:54 -!- Zekka has quit [Ping timeout: 272 seconds] 15:54:24 -!- ontoclasm has quit [Quit: Leaving.] 15:57:26 -!- Ladykiller69 has quit [Ping timeout: 240 seconds] 16:00:03 -!- omarax has quit [Remote host closed the connection] 16:00:09 -!- Ladykiller70 has quit [Ping timeout: 255 seconds] 16:02:51 -!- Nightbeer has quit [Ping timeout: 255 seconds] 16:03:22 -!- serq has quit [Changing host] 16:07:53 is needlestabbing supposed to prevent shouting? 16:12:38 -!- cang has quit [Quit: Page closed] 16:13:40 -!- GoblinBomb has quit [Ping timeout: 256 seconds] 16:16:33 -!- Kelb has joined ##crawl-dev 16:21:07 that pf commits was *SOLELY* made so he could use an emoticon 16:21:13 *commit 16:21:18 and it must be stopped 16:21:24 gammafunk: IMO remove commit access 16:21:34 filter all commits for emoticons 16:21:39 from anyone who uses emoticons or can't spell 16:21:42 -!- ProzacElf has quit [Ping timeout: 246 seconds] 16:21:44 server-side pre-commit hook 16:22:15 well it'd be like pre-receive or whatever. the commits don't happen on the server 16:23:35 well yeah I don't know how you call the server-side ones; the commits happen on the server in that the refs are brought into the filesystem at least 16:23:43 but yeah I think they call those something different 16:23:54 not even sure how you activate them 16:24:12 well github doesn't let you have them 16:24:23 because you can't run arbitrary server-side scripts 16:26:42 -!- Ladykiller69 has quit [Ping timeout: 255 seconds] 16:28:19 no it's very simple 16:28:27 you make a webhook that filters the commits 16:28:30 -!- Ladykiller70 has quit [Ping timeout: 255 seconds] 16:28:34 and only it can push to the *real* repository 16:29:12 the webhook just calls out to your custom google app 16:29:14 sure, that's fine if you want to maintain a separate repo 16:29:27 (i am joking) 16:29:42 you joke, but i bet people do that 16:29:46 heh, probably 16:31:32 make it a travis script 16:31:46 if the latest commit matches the criteria revert it 16:32:19 the build is lame. reverted. 16:32:37 -!- MarvinPA has quit [Quit: Leaving] 16:35:46 -!- ystael has quit [Ping timeout: 260 seconds] 16:36:03 -!- ProzacElf has joined ##crawl-dev 16:36:20 -!- Mercuria1Alchemi has quit [Ping timeout: 256 seconds] 16:37:12 -!- mngrif has quit [Changing host] 16:37:38 -!- MarvinPA has joined ##crawl-dev 16:46:27 -!- muravey has quit [Read error: Connection reset by peer] 16:46:45 -!- muravey has joined ##crawl-dev 16:50:46 -!- tensorpudding has quit [Ping timeout: 240 seconds] 16:51:05 -!- dtsund has quit [Remote host closed the connection] 16:52:04 -!- beogh has quit [Ping timeout: 252 seconds] 16:54:09 -!- Nightbeer has quit [Ping timeout: 255 seconds] 16:55:19 -!- CKyle has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 17:00:03 -!- omarax has quit [Remote host closed the connection] 17:00:54 -!- Ladykiller69 has quit [Ping timeout: 255 seconds] 17:02:40 -!- BARILLIAN is now known as Croases 17:03:09 -!- Ladykiller70 has quit [Ping timeout: 255 seconds] 17:05:13 -!- LexAckson has quit [Read error: Connection reset by peer] 17:07:16 -!- AreBrandon has quit [Ping timeout: 260 seconds] 17:11:37 -!- AreBrandon has joined ##crawl-dev 17:12:21 -!- xczxc has quit [Quit: Leaving] 17:18:00 -!- Nightbeer has quit [Ping timeout: 255 seconds] 17:20:10 -!- Cerpin has quit [Remote host closed the connection] 17:22:09 -!- Cerpin has joined ##crawl-dev 17:30:47 -!- Cerpin has quit [Remote host closed the connection] 17:32:52 -!- Cerpin has joined ##crawl-dev 17:38:15 -!- Ladykiller70 has quit [Ping timeout: 255 seconds] 17:42:05 -!- debo has quit [Ping timeout: 256 seconds] 17:47:38 -!- SaintWacko has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 17:48:16 -!- HellTiger has quit [Ping timeout: 240 seconds] 17:51:31 -!- xtwv has quit [Quit: c] 17:59:17 -!- Tux[Qyou] has quit [Read error: Connection reset by peer] 18:00:07 -!- omarax has quit [Remote host closed the connection] 18:00:57 -!- agentgt has quit [Remote host closed the connection] 18:00:57 -!- Kalir has quit [Quit: I'M OUT SON. PEACE, LOVE, EXPLOSIONS.] 18:01:19 -!- Kalir has quit [Changing host] 18:01:49 -!- debo has joined ##crawl-dev 18:02:56 Unstable branch on underhound.eu updated to: 0.18-a0-837-gd08d4d7 (34) 18:05:46 -!- agentgt has quit [Ping timeout: 240 seconds] 18:06:49 -!- Zekka has quit [Ping timeout: 272 seconds] 18:08:26 -!- argent0 has quit [Ping timeout: 240 seconds] 18:12:40 -!- wheals has quit [Quit: Leaving] 18:18:23 -!- wheals has joined ##crawl-dev 18:18:29 -!- siepu has quit [Read error: Connection reset by peer] 18:19:01 -!- AreBrandon has quit [Ping timeout: 260 seconds] 18:23:06 -!- HellTiger_NB has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/] 18:28:29 -!- mekhami has quit [Ping timeout: 250 seconds] 18:36:53 -!- vev has quit [Read error: Connection reset by peer] 18:37:06 -!- Kalir has quit [Ping timeout: 260 seconds] 18:41:37 -!- Lasty has joined ##crawl-dev 18:46:07 -!- GauHelldragon has quit [Ping timeout: 256 seconds] 18:48:14 -!- Kalir has quit [Changing host] 19:01:24 -!- omarax has quit [Read error: Connection reset by peer] 19:02:23 -!- Kalir has quit [Quit: I'M OUT SON. PEACE, LOVE, EXPLOSIONS.] 19:04:18 -!- Dxctxrx has quit [Quit: Textual IRC Client: www.textualapp.com] 19:06:31 -!- eb has quit [] 19:07:30 ??pakellas_reasons 19:07:31 pakellas reasons[1/7]: You look like this: http://i.imgur.com/iL7ef.jpg 19:09:55 -!- agentgt has quit [Ping timeout: 256 seconds] 19:11:09 why is it that monster green draconians breath poison clouds but player green draconians breath meph clouds? 19:11:21 %git 1546f68 19:11:21 07gammafunk02 * 0.18-a0-835-g1546f68: Two Pakellas overflow vaults 10(4 days ago, 1 file, 277+ 0-) 13https://github.com/crawl/crawl/commit/1546f68b0f7e 19:11:38 why is it that player dracs in general don't get the same breath attacks as monster dracs 19:11:42 does it matter? 19:11:51 Lightli: it's the radioactive effects of the orb of zot 19:11:55 good enough 19:12:30 (also breathing poison clouds is probably op early on) 19:12:35 -!- dtsundere has joined ##crawl-dev 19:13:02 fun fact: the impact damage from green drac breath is not affected by rPois 19:13:06 so obviously it's better 19:13:16 -!- wheals has quit [Quit: Leaving] 19:14:13 !tell wheals not only that, but you don't get a warning about that when you breathe towards allies who have rPois 19:14:13 amalloy: OK, I'll let wheals know. 19:14:20 -!- serq has quit [Quit: leaving] 19:14:37 -!- MgDark has quit [Quit: ChatZilla 0.9.92 [Firefox 42.0/20151029151421]] 19:14:42 i tried to fix that once but got into a spooky twilight zone realm of beam.cc or something 19:14:50 !send beam.cc amalloy 19:14:50 Sending amalloy to beam.cc. 19:15:10 !learn add beam.cc i tried to fix that once but got into a spooky twilight zone realm of beam.cc or something 19:15:10 beam.cc[5/5]: i tried to fix that once but got into a spooky twilight zone realm of beam.cc or something 19:15:31 ??beam.cc 19:15:32 beam.cc[1/5]: Q: What's the difference between a bolt and a beam? A: One leg is both the same. 19:15:35 the problem was that ABIL_BREATHE_MEPHITIC uses the same beam flavour as mephitic cloud, which is harmless to rPois enemies 19:15:42 -!- dtsundere is now known as dtsund 19:15:52 but actually does irresistible impact damage when it hits 19:16:22 ??beam.cc[4 19:16:23 beam.cc[4/5]: i think i take back what i said about the beam code being relatively sane 19:16:27 ??beam.cc[3 19:16:27 beam.cc[3/5]: honestly, beam.cc is one of the better parts of crawlcode 19:16:30 ??beam.cc[2 19:16:30 beam.cc[2/5]: wtf 19:16:39 why does wheals love beam.cc 19:16:42 is he a vampire 19:16:48 drunk at the time? 19:16:59 -!- mekhami has quit [Disconnected by services] 19:18:43 -!- mekhami_ is now known as mekhami 19:19:02 -!- Pacra has joined ##crawl-dev 19:31:47 -!- Daekdroom has quit [Quit: Leaving] 19:42:15 -!- WorkSight has quit [Quit: Leaving...] 19:44:00 -!- ZChris13 has joined ##crawl-dev 19:47:01 -!- PleasingFungus has joined ##crawl-dev 19:48:16 -!- Pacra has quit [Ping timeout: 260 seconds] 19:51:28 03PleasingFungus02 07* 0.18-a0-838-g70f806b: Remove a dead import 10(54 seconds ago, 1 file, 0+ 1-) 13https://github.com/crawl/crawl/commit/70f806be99fc 19:57:31 -!- muravey has quit [Ping timeout: 256 seconds] 19:59:12 hrm 19:59:12 PleasingFungus: You have 1 message. Use !messages to read it. 19:59:37 !tell Grunt I don't think we need blood curses ever, really, but the comment amused me :) 19:59:38 PleasingFungus: OK, I'll let grunt know. 20:00:03 -!- omarax_ has quit [Remote host closed the connection] 20:00:40 -!- demilicious has quit [Quit: Page closed] 20:02:51 -!- scummos__ has quit [Ping timeout: 260 seconds] 20:02:53 !death PleasingFungus 20:02:54 Death has come for PleasingFungus... 20:03:11 * PleasingFungus dies! 20:03:14 I was thinking about doom hounds 20:03:34 in what way 20:03:42 the goal of them is basically to have an escalating threat over a few turns 20:03:48 the goal of their howl 20:03:56 but there's no particular reason that threat needs to come in the form of doom hounds 20:04:29 in principle, it could be other things. e.g., summoning tough area-appropriate monsters 20:04:33 -!- ontoclasm has joined ##crawl-dev 20:04:36 or I guess some kind of fixed set 20:05:02 I was thinking about using RANDOM_BANDLESS_MONSTER, but hells' monster sets are garbage, so that produces garbage 20:05:08 use: 20:05:10 Hunting Cry 20:05:22 ??hunting cry 20:05:22 anubis guard[1/1]: 0.16 Tomb monster which sometimes appears in place of guardian mummies. Can turn up in pairs; has drain breath, Dispel Undead, and a hunting cry which makes noise and alerts other anubis guards on the level to your location. They are living but rN+++ and torment-immune. 20:05:32 that seems like kind of the inverse of what I was saying 20:05:57 also, why not just mark, if I was going with the pre-existing monster route 20:06:09 shrug?? 20:06:10 ¯\_(ツ)_/¯ 20:07:31 ty, sequell. 20:07:39 -!- Nightbeer has quit [Ping timeout: 255 seconds] 20:07:40 anyway, I'll let it sift through my mind a little more 20:08:05 possibly some kind of worldbinder-type monster set would work, or whatever those demonspawn are 20:08:55 !doom PleasingFungus 20:08:56 Grunt unleashes a terrible howl, and it begins to echo in PleasingFungus's mind! The Grunt bites PleasingFungus!!! x4 20:08:58 it'd also be fine for the summons to be non-durable, as long as they don't vanish on hound death. I feel strongly about that 20:09:00 for some reason 20:10:36 -!- nimtz has quit [Ping timeout: 240 seconds] 20:13:01 Grunt: o crawl historian, I must ask: which came first, lugonu or beogh? 20:15:01 Lugonu came first 20:15:32 hint: the order in enum.h starting with Lugonu is the order they were added, mostly 20:15:37 (the only oddity there is G) 20:15:47 hm. 20:15:52 was looking at is_evil_god() and wondering 20:15:53 * geekosaur is getting a lua crash :/ 20:15:55 ? 20:16:19 lua doesn't produce very good crash tracebacks, at least not as we use it 20:16:30 ya 20:16:39 I've been pondering a way to improve that for a while 20:19:23 oh, right, I may have done this to myself with an early attempt at setting stuff up when the altar comes into los 20:19:28 fiorgot to remove it 20:21:39 -!- CKyle has joined ##crawl-dev 20:23:15 yep 20:24:23 hm, guess this worked better with its own room 20:26:37 -!- bleak has quit [Read error: Connection reset by peer] 20:27:28 ok, so if I have a named monster, how do I identify it in monsters.txt? 20:30:59 -!- tollymain has quit [Quit: Connection closed for inactivity] 20:31:10 ? 20:31:17 oh 20:32:39 KMONS: 2 = ogre zombie name:Abby hd:99999 perm_ench:insane perm_ench:slow seen 20:33:13 (also if there is a way to slow the spires down so I don't need that ... er, meant hp there ... to make it stay alie more than a few seconds...) 20:33:18 -!- Ququman has quit [Read error: Connection reset by peer] 20:47:58 geekosaur: custom spellset on the spires with a lower spell freq? 20:48:20 probably. I'm trying electric golems with a custom spell set actually 20:49:55 -!- Lightli_ has joined ##crawl-dev 20:50:57 -!- CKyle has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 20:51:52 -!- Lightli has quit [Ping timeout: 252 seconds] 20:52:19 -!- CKyle has joined ##crawl-dev 20:53:16 golems seem more pakellas-weird-device 20:54:54 -!- MarvinPA has quit [Quit: Leaving] 20:56:26 -!- CKyle has quit [Ping timeout: 240 seconds] 20:59:56 gammafunk: i don't 'get' gammafunk_pakellas_cloud_experiment 21:00:02 why is there a second empty cell? 21:00:02 -!- omarax has quit [Remote host closed the connection] 21:00:50 -!- st_ has quit [Read error: Connection reset by peer] 21:01:01 -!- st_ has joined ##crawl-dev 21:01:31 -!- Lohengramm_ has joined ##crawl-dev 21:07:30 -!- argent0 has quit [Ping timeout: 255 seconds] 21:09:17 -!- WalkerBoh has joined ##crawl-dev 21:14:11 -!- Lohengramm_ has quit [] 21:17:42 -!- Ladykiller69 has quit [Read error: Connection reset by peer] 21:17:52 03PleasingFungus02 07* 0.18-a0-839-g97e0837: Unbrace. 10(44 seconds ago, 2 files, 0+ 4-) 13https://github.com/crawl/crawl/commit/97e08371e060 21:18:06 !brace PleasingFungus 21:27:31 -!- Bargorn has quit [Quit: Page closed] 21:28:10 -!- cheesedog has quit [Ping timeout: 252 seconds] 21:33:22 hm 21:33:24 !seen |amethyst 21:33:24 I last saw |amethyst at Thu Dec 17 18:43:40 2015 UTC (7h 49m 43s ago) saying 'and the list address is just two words, so it would be easy enough for a spambot to find' on ##crawl-dev. 21:33:29 .banisheddd 21:33:31 477. [2015-12-18 02:10:38] [place=Abyss:5] MakeMeASandwich the Hoplite (L27 HaTm of Gozag) was cast into the Abyss! (a Zot trap) (Zot:2) 21:33:40 good 21:33:50 huh 21:34:25 banished direct to abyss 5 21:34:40 !lm MakeMeASandwich hatm -2 21:34:41 65/66. [2015-12-18 02:17:46] MakeMeASandwich the Hoplite (L27 HaTm of Gozag) left the Realm of Zot on turn 64626. (Zot:1) 21:34:54 I didn't realize deep banishment was in 21:34:57 or maybe my memory is going 21:35:19 you probably thought it was only part of abyssrun 21:35:27 !lm * abyss.enter br=Abyss s=place x=min(xl),avg(xl),max(xl) 21:35:27 plausible 21:35:29 1173 milestones for * (abyss.enter br=Abyss): 458x Abyss:2 [4, 17, 27], 364x Abyss:3 [9, 19.43, 27], 238x Abyss:1 [1, 11.39, 27], 57x Abyss:4 [12, 21.96, 27], 56x Abyss:5 [19, 26.11, 27] 21:35:50 hm xl 12 to abyss 4 21:36:29 !lm * abyss.enter br=Abyss xl=12 21:36:31 49. [2015-12-17 10:35:47] Misericorde the Black Belt (L12 MiCK of Xom) was cast into the Abyss! (the severe capriciousness of Xom) (Lair:4) 21:36:49 !lm * abyss.enter br=Abyss xl=12 x=count(gid) 21:36:51 49 milestones for * (abyss.enter br=Abyss xl=12): count(game_key)=47 21:37:06 !lm * abyss.enter br=Abyss xl=12 -2 21:37:07 48/49. [2015-12-17 08:04:59] hyde0630 the Blocker (L12 DsFi of Yredelemnul) was cast into the Abyss! (Sonja) (Lair:4) 21:37:16 oh wait that's not all abyss 4 21:37:30 !lm * abyss.enter place=Abyss:4 xl=12 21:37:31 2. [2015-12-15 20:03:42] Shink the Bludgeoner (L12 GrBe of Trog) was cast into the Abyss! (Rupert) (Orc:1) 21:37:44 !lm * abyss.enter place=Abyss:4 xl=12 -2 21:37:45 1/2. [2015-12-06 11:17:43] vible the Brawler (L12 GhAs of Okawaru) was cast into the Abyss! (ordcoder's ghost) (IceCv) 21:38:00 @?? Rupert 21:38:01 Rupert (04@) | Spd: 10 | HD: 16 | HP: 110-131 | AC/EV: 7/8 | Dam: 21 | 10weapons, 10items, 10doors, see invisible | Res: 06magic(100) | XP: 2927 | Sp: paralyse, confuse, berserker rage [06!sil] | Sz: Medium | Int: human. 21:38:44 well 2/49 xl 12 banishments going to A:4 is probably about right 21:42:36 -!- mumbologist has quit [Ping timeout: 260 seconds] 21:42:47 -!- mumbologist_ is now known as mumbologist 21:51:49 -!- mamgar has quit [Read error: Connection reset by peer] 22:00:03 -!- omarax has quit [Remote host closed the connection] 22:00:06 -!- GauHelldragon has quit [Ping timeout: 260 seconds] 22:05:51 -!- Krakhan has quit [Changing host] 22:06:54 -!- amalloy is now known as amalloy_ 22:10:10 ok, http://lpaste.net/147015 seems pretty close 22:18:52 -!- Dixlet has quit [Read error: Connection reset by peer] 22:19:11 bugs incoming 22:19:11 -!- Dixlet has joined ##crawl-dev 22:19:20 !send PleasingFungus bugs 22:19:22 03PleasingFungus02 07* 0.18-a0-840-g16b6e64: Begin gutting join_religion() 10(3 minutes ago, 1 file, 212+ 184-) 13https://github.com/crawl/crawl/commit/16b6e649e401 22:19:26 Sending bugs to PleasingFungus. 22:19:40 geekosaur: a little late for me to be mentioning this but this isn't a very good use of monster names 22:20:00 well, seems like much of the point is the reference 22:20:12 "a reference" isn't a good excuse for a vault 22:21:15 -!- Lasty has quit [Quit: Leaving.] 22:23:20 (more accurately, "for vault design decisions") 22:24:29 03PleasingFungus02 07* 0.18-a0-841-ge132251: Pull another function out of join_religion() 10(35 seconds ago, 1 file, 17+ 12-) 13https://github.com/crawl/crawl/commit/e13225106680 22:25:00 -!- mumbologist has quit [Ping timeout: 246 seconds] 22:26:32 !pull PleasingFungus 22:26:39 !push Grunt 22:27:12 -!- Daekdroom has quit [Quit: Leaving] 22:27:15 !bisect PleasingFungus 22:28:21 -!- dtsund has quit [Remote host closed the connection] 22:33:44 -!- Pacra has joined ##crawl-dev 22:34:55 -!- puppypunch has quit [Quit: Page closed] 22:36:09 !shove Grunt 22:36:10 =p 22:37:09 also, i think i like 2 floor orc 22:37:58 Do you, though? Do you really? 22:39:11 !kw neworc 22:39:11 No keyword 'neworc' 22:39:31 !kw newpakellas 22:39:32 Keyword: newpakellas => pakellas explbr=evoker-god-rebase 22:39:49 ??lg 22:39:49 listgame[1/5]: !lg command displays info about past games. The manual is available here: https://github.com/crawl/sequell/blob/master/docs/listgame.md 22:40:35 !lg . x=vlong 22:40:36 1271. [vlong=0.18-a0-839-g97e0837] chequers the Conjurer (L4 OpCj), succumbed to a worker ant's poison on D:2 on 2015-12-18 03:25:56, with 61 points after 1742 turns and 0:03:55. 22:40:48 %git a64f057 22:40:48 07Grunt02 * 0.18-a0-752-ga64f057: Flatten Orc to two levels, and remove plain orcs from generation there. 10(8 weeks ago, 8 files, 40+ 39-) 13https://github.com/crawl/crawl/commit/a64f057106d4 22:41:03 !lm * vlong>=0.18-a0-752-ga64f057 orc:2 22:41:07 972. [2015-12-18 03:37:40] aziska1 the Cleaver (L13 DrBe of Trog) reached level 2 of the Orcish Mines on turn 16527. (Orc:2) 22:41:19 !lm * vlong>=0.18-a0-752-ga64f057 orc:2 / won 22:41:23 174/972 milestones for * (vlong>=0.18-a0-752-ga64f057 orc:2): N=174/972 (17.90%) 22:41:27 !lm * current orc:4 / won 22:41:38 4961/23392 milestones for * (current orc:4): N=4961/23392 (21.21%) 22:41:44 03PleasingFungus02 07* 0.18-a0-842-g60f76df: join_religion(): Refactor good god piety transfer 10(44 seconds ago, 1 file, 46+ 47-) 13https://github.com/crawl/crawl/commit/60f76df0c5a8 22:41:47 !kw neworc vlong>=0.18-a0-752-ga64f057 22:41:47 Defined keyword: neworc => vlong>=0.18-a0-752-ga64f057 22:42:19 -!- Dixlet has quit [Ping timeout: 272 seconds] 22:42:22 fuck 22:42:49 03PleasingFungus02 07* 0.18-a0-843-g4e3efc9: Oops 10(9 seconds ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/4e3efc9ed9c4 22:43:23 rip 22:43:46 two floor orc is a major improvement 22:43:47 i m h o 22:43:53 bias...?! 22:44:04 !lm . br.end=orc orc:2 22:44:07 2. [2015-12-17 02:18:01] SGrunt the Grand Gadgeteer (L16 KoGl of Pakellas) reached level 2 of the Orcish Mines on turn 27171. (Orc:2) 22:44:11 <.< ... >.> ... 22:46:21 -!- Dixlet has joined ##crawl-dev 22:47:47 -!- Kramell has quit [Ping timeout: 240 seconds] 22:48:01 <_< 22:48:49 -!- amalloy_ is now known as amalloy 22:52:11 -!- WalkerBoh has quit [Remote host closed the connection] 22:54:07 03PleasingFungus02 07* 0.18-a0-844-g9229740: Finish gutting join_religion() 10(36 seconds ago, 1 file, 49+ 22-) 13https://github.com/crawl/crawl/commit/9229740caa0f 22:55:23 -!- Cacophony has quit [Quit: oh no am scare] 22:56:44 !gut PleasingFungus 22:56:52 like a pillowcase 22:56:53 ? 22:57:04 like a fish!!! 22:57:15 wow... 22:57:15 (((todo: add that))) 22:57:23 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 22:57:30 fun fact: all that join_religion() nonsense is because I was poking at helpal 22:57:49 You will be buggily punished for this! 22:57:58 typical... 22:58:05 i dunno. i'll withhold judgement. but so far i like it (2 floor orc) 22:58:09 wanted to make you get the familiar when you first joined the religion, found the right function, and began to weep 22:58:55 and how on earth did you max pak piety that early grunt? 22:59:10 faith 22:59:40 ProzacElf: early "faith 22:59:43 faith and cheating imo 22:59:44 =p 22:59:45 and D:2 altar 22:59:46 heh 23:00:03 -!- omarax has quit [Remote host closed the connection] 23:00:06 i think i was in depths before i got 6* 23:00:11 well 23:00:14 you probably played 23:00:14 before 23:00:17 %git HEAD^{/Exempt} 23:00:17 07Grunt02 * 0.18-a0-794-g96cde7b: Exempt Pakellas gifts from piety gain slowdown during timeout. 10(4 days ago, 1 file, 5+ 1-) 13https://github.com/crawl/crawl/commit/96cde7bce721 23:00:25 oh 23:00:26 yeah 23:00:40 i didn't mind it at all 23:01:10 actually it was somewhat earlier. my 2nd lair branch now that i think about it 23:01:24 because i was saving my supercharge 23:01:35 then i went and bought a rod of clouds to deal with elf:3 23:02:03 then some pak gifted me another one and some jerk in elf dropped a third one. after i spent 1200 gold and supercharged one 23:02:16 er 23:02:18 "pak" 23:02:21 not 'some pak' 23:02:30 -!- mizu_no_oto has quit [Client Quit] 23:02:32 Pakellas is duplicated! 23:02:46 heh 23:03:07 didn't gozag used to have a duplicate item gimmick? 23:03:10 ya 23:03:11 yes 23:03:14 it didn't work very well 23:03:27 -!- FireSight has quit [Ping timeout: 240 seconds] 23:03:34 i have trouble thinking of many things i'd want to use it on 23:03:42 back when I did this 23:03:44 !lg . gozag won 23:03:45 1. SGrunt the Miracle Worker (L27 SpSk of Gozag), escaped with the Orb and 3 runes on 2014-06-08 00:22:20, with 1325761 points after 157429 turns and 6:52:49. 23:03:49 I used it to duplicate a quick blade 23:03:52 especially now that his shops work better 23:03:55 because I had spare ?brand 23:04:00 hah 23:04:01 and I wanted to see what brands I could get <.< 23:04:03 -!- PleasingFungus has quit [Remote host closed the connection] 23:04:28 like, could you duplicate a stack of acquirements? 23:04:29 in at least one other game I used it to duplicate =slaying 23:04:31 well 23:04:37 whether or not it could duplicate stacks varied 23:04:41 hah 23:04:50 =AC > =slay 23:04:53 initially yes, then no, then yes again 23:04:55 imo 23:04:55 then it was removed 23:04:57 haha 23:05:03 -!- kunwon1 is now known as metasyntactic 23:05:08 duplicate a stack of shields 23:05:13 mmm 23:05:19 best bug 23:05:26 "the gnome lord wields 8 daggers!" 23:05:30 ! 23:06:01 you could stack shields at some point? 23:06:22 briefly Wn got a stack 23:06:34 but 23:06:36 could you 23:06:43 dual wield stacks of shields 23:06:43 <.< 23:07:12 double shield punch! 23:07:42 -!- kazimuth has quit [Max SendQ exceeded] 23:07:46 -!- Krakhan has quit [Ping timeout: 260 seconds] 23:12:46 %git 7e4731fa07ec72c855a50105316aa31b6e6149ed 23:12:46 07|amethyst02 * 0.17-a0-858-g7e4731f: Assert if we do make a bad stack in newgame (amalloy) 10(8 months ago, 1 file, 3+ 0-) 13https://github.com/crawl/crawl/commit/7e4731fa07ec 23:12:58 Plehelpal? 23:12:59 -!- Poncheis has quit [Quit: ChatZilla 0.9.92 [Firefox 43.0/20151208100201]] 23:13:01 somewhere around that neighborhood is when shields stacked 23:13:04 o pf quit 23:13:10 helpal?? 23:13:22 heplial 23:13:30 ebering: it's a god design PF is working on 23:13:37 based around a single ally which grows in power 23:13:48 (codename Helpal) 23:13:57 hm 23:14:10 somewhere PF has a design doc for it 23:14:23 design documents?????? 23:14:27 never! 23:14:36 https://crawl.develz.org/wiki/doku.php?id=dcss:brainstorm:god:propose:ally_god 23:17:12 ...didn't I say something about a god focused entirely on allies a couple days back? 23:18:26 kvaak: both of you stole it from twelwe (god is obviously Ryan from pizza tornado) 23:18:37 I'm fairly sure I didn't 23:20:00 "god focused on allies" is not that unique 23:20:38 there's no such thing in crawl 23:21:18 ontoclasm: i think La apts are quite similar to Mi right now 23:22:29 !apt La 23:22:30 Could not understand "la" 23:22:32 -!- Lightli_ is now known as Lightli 23:23:06 -!- bleak has quit [Ping timeout: 265 seconds] 23:23:26 several gods have effects affecting/centered on allies but it's not "the" thing for any of them 23:24:38 -!- zxc has joined ##crawl-dev 23:25:53 fr lugonu bend space doesn't cost hp 23:25:54 -!- Twinge has quit [] 23:26:08 fr bend space does not damage enemies 23:26:15 bend space gets worse at higher invo 23:26:29 because it has a bigger chance of damaging neutrals from corrupt 23:27:10 against everything else the damage is negligible 23:28:56 agree with kvaak there 23:31:44 -!- metasyntactic is now known as kunwon1 23:32:30 -!- Twinge has joined ##crawl-dev 23:32:44 04:27 < yottam> Refusing to load buggy ghost from file "/opt/dgl-chroot/var/gamedata/dcss-trunk/save/bones/bones.D-4_0"! 23:32:49 anyone want this file? 23:33:01 I like how the game "refuses" rather than "fails" 23:33:49 oh, the file is gone 23:35:32 -!- HoneyLocust has joined ##crawl-dev 23:36:26 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 23:43:32 -!- Blazinghand has joined ##crawl-dev 23:44:31 -!- Pacra has quit [Ping timeout: 260 seconds] 23:51:26 -!- AreBrandon has joined ##crawl-dev 23:54:33 kvaak: beogh? 23:54:56 what about beogh 23:55:11 several gods have effects affecting/centered on allies but it's not "the" thing for any of them 23:55:24 apart from item gifting you can't specifically interact with your allies in any way 23:56:04 tw, recall, ta 23:56:25 do you really mean to tell me that the core of beogh is smiting and virtual armor skill and waterwalking 23:57:23 I mean to tell you the core of beogh isn't particularly interesting 23:57:26 or well done 23:57:28 that is true 23:57:54 but his main feature is allies with a side dish of smiting 23:58:27 well maybe so but there isn't a whole lot of interactivity 23:59:59 -!- adamzap has joined ##crawl-dev