00:20:11 New branch created: pull/720 (228 commits) 13https://github.com/crawl/crawl/pull/720 00:20:21 03Floodkiller02 07https://github.com/crawl/crawl/pull/720 * 0.21-a0-631-gf7f5cde: Revert "More fully remove Control Undead" 10(2 months ago, 11 files, 121+ 7-) 13https://github.com/crawl/crawl/commit/f7f5cde4c169 00:20:21 03Floodkiller02 07https://github.com/crawl/crawl/pull/720 * 0.21-a0-632-gacbdf7c: Revert "More fully remove Cigotuvi's Embrace" 10(2 months ago, 3 files, 10+ 2-) 13https://github.com/crawl/crawl/commit/acbdf7c82a8b 00:20:21 03Floodkiller02 07https://github.com/crawl/crawl/pull/720 * 0.21-a0-633-g1747c7c: Revert "Remove Cigotuvi's Embrace" 10(2 months ago, 20 files, 243+ 9-) 13https://github.com/crawl/crawl/commit/1747c7ce77b8 00:20:21 03Floodkiller02 07https://github.com/crawl/crawl/pull/720 * 0.21-a0-634-g8392baf: Revert "Remove Control Undead" 10(2 months ago, 8 files, 10+ 6-) 13https://github.com/crawl/crawl/commit/8392baf1dec1 00:20:21 03Floodkiller02 07https://github.com/crawl/crawl/pull/720 * 0.21-a0-635-g16f9898: Revert "Remove mutagenic chunks from db_lint" 10(2 months ago, 1 file, 1+ 0-) 13https://github.com/crawl/crawl/commit/16f98988c816 00:20:21 03Floodkiller02 07https://github.com/crawl/crawl/pull/720 * 0.21-a0-636-g6396221: Revert "Remove some mutagenic chunks from a shop" 10(2 months ago, 1 file, 3+ 2-) 13https://github.com/crawl/crawl/commit/6396221c2e41 00:20:21 03Floodkiller02 07https://github.com/crawl/crawl/pull/720 * 0.21-a0-637-gee35121: Revert "Remove mutagenic chunks from util/monster." 10(2 months ago, 1 file, 3+ 0-) 13https://github.com/crawl/crawl/commit/ee351219cc62 00:20:21 03Floodkiller02 07https://github.com/crawl/crawl/pull/720 * 0.21-a0-638-g1c6f6a4: Revert "Fix broken logic, and remove some vestiges." 10(2 months ago, 7 files, 19+ 4-) 13https://github.com/crawl/crawl/commit/1c6f6a494ad4 00:20:21 03Floodkiller02 07https://github.com/crawl/crawl/pull/720 * 0.21-a0-639-g47a0772: Revert "Move mutagenic food brand tile to UNUSED." 10(2 months ago, 2 files, 0+ 0-) 13https://github.com/crawl/crawl/commit/47a077221ea3 00:20:21 03Floodkiller02 07https://github.com/crawl/crawl/pull/720 * 0.21-a0-640-gf90220d: Revert "Remove mutagenic chunks." 10(2 months ago, 11 files, 70+ 14-) 13https://github.com/crawl/crawl/commit/f90220df8d63 00:20:21 ... and 218 more commits 00:21:45 uh 00:21:54 Floodkiller: something went wrong 00:22:00 I'm the 227 extra commits from gooncrawl in that pr 00:22:53 oh this wasn't Floodkiller 01:25:15 Unstable branch on crawl.develz.org updated to: 0.22-a0-268-g1cc83ef (34) 01:57:10 Windows builds of master branch on crawl.develz.org updated to: 0.22-a0-268-g1cc83ef 02:19:25 -!- nobaudy is now known as thurin 02:54:40 Monster database of master branch on crawl.develz.org updated to: 0.22-a0-268-g1cc83ef 03:11:38 -!- KittyTac is now known as KittyTac|Away 03:11:39 Unstable branch on crawl.beRotato.org updated to: 0.22-a0-268-g1cc83ef (34) 03:22:21 -!- KittyTac|Away is now known as KittyTac 03:51:56 -!- amalloy is now known as amalloy_ 04:45:05 Hi, is this a bug? doesn't seem right: https://dl.dropbox.com/s/6mi963ffdpv2dtm/weird_rage_messages.png?dl=0 04:45:32 I'm getting a lot of "recovering from berserker rage" when trying to do whirlwind 04:46:07 yes, I was -Berserk (I have berserkitis) 04:46:30 still, I don't see why it's spamming that so much 12:24:37 -!- FunkyGnoll is now known as FunkyBomb 14:04:36 -!- amalloy_ is now known as amalloy 14:09:53 i can't repro that above thing with the berserk rage spam but i would assume it's something calling can_go_berserk with the wrong params for it being quiet? 14:10:51 at a glance it looks like nothing would cause it to be verbose when it's checking berserkitis during any kind of attack 14:11:20 03MarvinPA02 07* 0.22-a0-269-ga231a93: Adjust some weapon randart names 10(13 minutes ago, 1 file, 1+ 9-) 13https://github.com/crawl/crawl/commit/a231a930deea 14:16:29 yeah, weird. i can't repro either. but i learned something interesting: if you evoke rage while -Berserk, it prints the message twice 14:17:46 oh, this is interesting. i'm just pressing (a) (ESC) while -Berserk, not selecting evoke berserk rage, and it still tells me i'm recovering 14:19:49 choose_ability_menu() calls check_ability_possible (ability=ABIL_EVOKE_BERSERK, quiet=true) which calls player::can_go_berserk(intentional=true, potion=false, quiet=false, reason=0x0, temp=true) 14:20:02 oh, i guess greying out inactive abilities is a new thing? the params are definitely wrong here yeah, it's marked as intentional which makes it print the message 14:22:24 is intentional=true what's wrong, or quiet=false? 14:23:05 the latter, the message is printed if (intentional || potion) && !quiet 14:23:13 right 14:26:28 well, that's easy enough to fix. still not sure about the triple-printed messages unasked-for, though 14:27:29 yeah same, it looks like the params are all in the right place to not print any messages for that case 14:28:19 03amalloy02 07* 0.22-a0-270-gef6b427: Remove erroneous error message in ability menu 10(35 seconds ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/ef6b42719123 14:31:57 03MarvinPA02 07* 0.22-a0-271-gc000056: Reformat some lines 10(7 minutes ago, 1 file, 11+ 4-) 13https://github.com/crawl/crawl/commit/c000056a3732 14:57:31 -!- yesno_ is now known as yesno 15:03:30 The build was fixed. (master - a231a93 #9393 : Chris Campbell): https://travis-ci.org/crawl/crawl/builds/351452212 15:09:49 Unstable branch on crawl.jorgrun.rocks updated to: 0.22-a0-271-gc000056a37 (34) 15:53:49 The build was fixed. (master - c000056 #9395 : Chris Campbell): https://travis-ci.org/crawl/crawl/builds/351461047 16:12:59 03NormalPerson702 07https://github.com/crawl/crawl/pull/719 * 0.22-a0-261-g97d85b9: More adjust god ^ screen descriptions. 10(3 minutes ago, 1 file, 6+ 6-) 13https://github.com/crawl/crawl/commit/97d85b9bd161 17:36:01 braks (L27 DrGl) Crash caused by signal #11: Segmentation fault (Vaults:3) 18:07:59 -!- Euph0ria is now known as TabMasher 18:18:27 Unstable branch on underhound.eu updated to: 0.22-a0-271-gc000056a37 (34) 20:28:53 -!- amalloy is now known as amalloy_ 21:06:51 -!- amalloy_ is now known as amalloy 23:59:44 Unstable branch on CRAWL.XTAHUA.COM updated to: 0.22-a0-271-gc000056 (34)