00:32:02 Fork (bcrawl) on crawl.kelbi.org updated to: 0.23-a0-4837-gdd944a72e4 03:23:10 Experimental (bcrawl) branch on underhound.eu updated to: 0.23-a0-4837-gdd944a72e4 05:10:22 Unstable branch on crawl.akrasiac.org updated to: 0.30-a0-269-gf0224bf (34) 07:01:59 -!- ChaosWitch is now known as theWeaver 10:49:50 I had a spicy idea... now that hailstorm got adjusted you might reconsider giving it blast radius "3" (not adjecent) with Vehumet. That was deemed too OP way back when but now the turns have tabled 11:08:58 liike, we talking random round levels of spiciness here 11:42:25 03Rytis Petronis02 {advil} 07* 0.30-a0-270-g2d2572e83d: feat: add an option to reduce redraws for animations 10(3 months ago, 6 files, 45+ 3-) 13https://github.com/crawl/crawl/commit/2d2572e83d05 11:42:25 03advil02 07* 0.30-a0-271-g12470dd2fc: refactor: various adjustments to animation reduction 10(47 minutes ago, 9 files, 58+ 87-) 13https://github.com/crawl/crawl/commit/12470dd2fcf3 11:42:25 03advil02 07* 0.30-a0-272-gf98c3da03f: feat: default `reduce_animations` to true on webtiles 10(19 minutes ago, 1 file, 8+ 1-) 13https://github.com/crawl/crawl/commit/f98c3da03f33 11:53:21 <06a​dvil> that third commit is a bit experimental, we can see how it goes 12:17:39 <09g​ammafunk> looks nice 12:21:02 <09g​ammafunk> I'm currently rewriting all of qw's double for loops of the style lua for x = -los_radius, los_radius do for y = -los_radius, los_radius do ... and ditto for the adjacent case when x/y range from -1 to 1 for adjacent squares since it reduces indent and is much more succinct to do e.g. for x, y in square_iter(0, 0) do ... and for x, y in adjacent_iter(x, y) do ... base on the generator-style iterators I made here 12:21:03 https://github.com/crawl/qw/blob/master/source/los.lua#L1 12:21:16 <09g​ammafunk> but I am wondering if we should provide this in clua 12:22:15 <09g​ammafunk> it often reduces two levels of indent since for a lot of cases you specifically need to exclude 0, 0, and that can be done through the iterator as an include_center argument defaulting to false 12:22:19 Unstable branch on crawl.kelbi.org updated to: 0.30-a0-272-gf98c3da03f (34) 12:23:01 <09g​ammafunk> not actually sure if it would be faster or slower if we provided them via the C++ api 12:23:25 <09g​ammafunk> but I suppose we could just take the versions I wrote and ship them as part of the user library (possible with some more cleanups) 12:23:50 <09g​ammafunk> the radius iterator was semi-challenging to write but I haven't quite had a use case for it yet, interestingly enough 12:24:35 <09g​ammafunk> would in theory be useful whenever you want to find a nearest thing since it radiates outward from center, but it turns out it's mostly crawl itself that cares about this rather than a bot 13:34:17 -!- mhcerri6 is now known as mhcerri 15:11:51 <09h​ellmonk> found a cool new way to get no warning penance 15:12:40 <09h​ellmonk> step 1: have an ally your god doesn't want you to hurt. step 2: be on the other side of a wall from that ally. step 3: cast shatter 15:16:01 <10P​leasingFungus> lol 15:16:35 <09h​ellmonk> my brain is expanding in ways once thought impossible 15:24:08 Unstable branch on underhound.eu updated to: 0.30-a0-272-gf98c3da03f (34) 15:33:08 <08n​icolae> it's got plenty of room for expansion 15:33:27 <09h​ellmonk> yeah the vat it's in is really spacious 15:33:43 <08n​icolae> they're like goldfish, they grow to the size of their container 15:34:19 <09g​ammafunk> I still need to check if imb-ing your plants gives actual pennance or if the prompt is a lie 15:35:19 <09g​ammafunk> hrm, imb both gives no warning and no pennance, so what was the case I was remembering? 15:35:20 the commit message I looked at earlier (for a query about Hep ancestors) suggested it's not supposed to 15:35:29 <09g​ammafunk> maybe it just got fixed 15:36:17 <09g​ammafunk> geeokosaur: for fedhas? yeah, it definitely shouldn't in terms of the correct design, but I recall receiving a warning at one point 15:36:20 when hep and fedhas checks got unified 15:36:41 <09g​ammafunk> perhaps this was just fixed at that point, since this game I'm thinking of was some time ago 15:36:47 <09g​ammafunk> !lm . fedh 15:36:49 <04C​erebot> 300. [2021-08-12 08:56:39] gammafunk the Warrior (L27 VpDe of Fedhas) found the Orb of Zot! (Zot:5) 15:37:11 <09g​ammafunk> actually don't know if that was the game though, think it might have been one prior to that 15:37:33 git 276f4da11a 15:37:37 07advil02 * 0.27-a0-1107-g276f4da11a: refactor: unify hepl and fedhas ally protection 10(1 year, 5 months ago, 5 files, 37+ 14-) 13https://github.com/crawl/crawl/commit/276f4da11a79 15:37:37 %git 276f4da11a 15:37:41 <09g​ammafunk> anyhow, guess it's no longer a problem, and I can't think of another collision effect that might be relevant 15:38:00 <09g​ammafunk> !lg . fedhas -2 15:38:01 <04C​erebot> 8/9. gammafunk the Pyromancer (L27 VSCj of Fedhas), escaped with the Orb and 3 runes on 2021-01-24 16:33:25, with 1464392 points after 117971 turns and 11:30:48. 15:38:42 <09g​ammafunk> hrm, the timing checks out there, that game was 1 year almost 9 months ago 15:39:15 <09g​ammafunk> ah that commit even mentions the imb case 15:39:20 <09g​ammafunk> ok, so chalking this up as fixed then 15:42:12 right, that's why I brought it up 15:44:56 <10P​leasingFungus> good work geekosaur! 16:36:30 Am I missing something on what differentiates arcjolt from static discharge? 18:56:41 <10P​leasingFungus> you are 19:49:37 Well I'm missing what it is besides arcjolt being bigger (and admittedly super fun) 19:52:50 <10P​leasingFungus> static discharge hits an adjacent fella and arcs from there, bouncing around randomly and occasionally back to you 19:53:26 <10P​leasingFungus> arcjolt hits every adjacent fella, every fella adjacent to those, etc, never hitting anything twice and never hitting you 19:53:44 ohhhhhhhhh 19:54:01 yeah I just totally misunderstood it then, that's dope 22:35:01 Unstable branch on crawl.develz.org updated to: 0.30-a0-272-gf98c3da03f (34) 22:56:56 Windows builds of master branch on crawl.develz.org updated to: 0.30-a0-272-gf98c3da03f 23:37:43 Unstable branch on cbro.berotato.org updated to: 0.30-a0-272-gf98c3da03f (34) 23:54:23 Monster database of master branch on crawl.develz.org updated to: 0.30-a0-272-gf98c3da03f