00:00:04 -!- omarax has quit [Remote host closed the connection] 00:03:02 -!- simmarine has quit [Read error: Connection reset by peer] 00:03:13 <|amethyst> gammafunk: do you need to? you can do C-style casting 00:03:33 I probably don't, but now I having a bigger problem 00:03:50 I'm setting a position marker upon vault placement and it's coming back null when I retrieve 00:05:26 <|amethyst> hm, code? 00:07:55 |amethyst: here's a partial diff with some very crude code http://dpaste.com/3MFTCVV 00:08:37 _vault_grid_mapspec() is trying to set it based on data in the mapspec that I've added 00:09:07 and then the code in main.cc is when entering 00:09:16 it's (currently very simple) code to move the player 00:09:27 and I've modified tag_followers(), but that's not important 00:10:42 <|amethyst> hm, and marker isn't null but posm is? 00:10:54 marker is null 00:11:04 but I swear at one point in gdb it wasn't 00:11:15 however I'm placing the vault with &L 00:11:44 the vault being a test vault that correctly places a transporter feature with the new syntax that will set up the mapspec 00:12:03 and when I break on that vault code, the positions seem right 00:12:17 the feature is place, but when I enter the portal, that ASSERT(marker) fails 00:12:52 one different I noticed with the hatch code 00:13:02 which also uses the same map position marker things 00:13:10 is that it clears this marker needs activation flag 00:13:21 not sure if that's relevant 00:15:36 -!- NotKintak has quit [Ping timeout: 240 seconds] 00:17:49 <|amethyst> hm, the have_inactive_markers flag seems to be used only for an assert in main.cc 00:18:56 <|amethyst> so probably not 00:19:27 -!- aves has quit [Quit: Page closed] 00:23:05 -!- bonghitz has quit [Remote host closed the connection] 00:24:41 <|amethyst> gammafunk: hm, nothing stands out at me... do you have a full diff handy so I can try? 00:24:57 yeah, it's embarassing code, but let me make a patch 00:25:54 -!- pottsy has quit [Quit: Leaving] 00:26:20 <|amethyst> btw, you know what would be useful to have? map_position_marker *posm = env.markers.find(you.pos()) 00:28:33 |amethyst: thanks for taking a look: http://dpaste.com/33KSCRZ 00:29:54 yeah, something like that would be cool 00:30:09 have to make ::find() into a templated method? 00:30:43 most of those vault modifications are junk to make the des parse 00:30:44 <|amethyst> yeah, and add a static member to all the map_*_marker subclasses indicating what the appropriate MAT_ enumerator is 00:31:09 sounds like something I should do in the final version 00:31:14 trans_test in float.des 00:31:17 is my test vault 00:31:26 <|amethyst> compiling 00:31:55 -!- busse has quit [Quit: Konversation terminated!] 00:32:25 <|amethyst> I'm not sure how I feel about the landing being its own feature, or at least about it having the floor glyph 00:33:22 well, it's not something I'm absolutely set on 00:33:24 <|amethyst> I can imagine problems when a nymph drowns it 00:34:11 one problem is that I want these things to really be like stairs 00:34:33 in terms of how they behave 00:34:39 -!- aditya has joined ##crawl-dev 00:34:54 <|amethyst> I'd make the landing use the teleporter glyph (in a different colour) in that case 00:35:04 oh, yeah 00:35:07 <|amethyst> though I guess there are hatches... but those don't have a speacial feature as the dest 00:35:15 <|amethyst> s/speac/spec/ 00:35:36 right, but they're not interlevel; there's definitely a gameplay benefit for these having identifiable endpoints 00:36:06 <|amethyst> let's see... game started, let me set some breakpoints 00:36:23 my test was just to locally place *trans_test with &L 00:36:36 and yeah break on the vault placement block and the main.cc block 00:36:52 the calculated positions in the vault placement were fine when I confirmed with X 00:37:44 <|amethyst> it wouldn't be the cause of this crash, but that tag_followers is weird 00:37:59 <|amethyst> oh, I see 00:38:05 <|amethyst> you have a new monster flag for that 00:38:25 yes, but it's still weird and probably bad 00:38:36 it needs to be done in a similar way at least 00:38:45 so it seemed good to re-use that code if possible 00:39:22 -!- amalloy is now known as amalloy_ 00:40:30 <|amethyst> oh, weird 00:40:51 <|amethyst> when that _v_g_ms code is running, the marker gets added and I can see it in env.markers 00:41:16 <|amethyst> then I continue, then ctrl-c in gdb and look at env.markers again 00:41:20 <|amethyst> sure enough it's gone 00:41:40 oh, is there some kind of weird marker clearing step later in the vault code? 00:45:40 <|amethyst> it's not being cleared, because I had another marker that's still there 00:48:04 static const long MARKERS_COOKY = 0x17742C32; 00:49:26 <|amethyst> hm, this is weird 00:49:26 apparently "cooky" is a crawlcode meme 00:49:55 <|amethyst> this time I do seem to have a new marker, at slightly the wrong place 00:54:00 <|amethyst> okay, this is weird 00:54:37 <|amethyst> inside that block in _v_g_ms, where is correct, and the marker gets added to the correct place in env.markers 00:55:00 <|amethyst> but if I continue then break, the marker is shifted around by one or two squares 00:56:31 continue and break in main.cc ? 00:56:47 <|amethyst> continue then hit ctrl-c in gdb 00:56:49 <|amethyst> hmm 00:56:56 <|amethyst> with a watchpoint on env.markers 00:57:34 <|amethyst> I see vault_placement::apply_grid -> dungeon_terrain_changed -> _dgn_shift_feature -> dgn_move_entities_at -> map_markers::move 00:58:52 oh weird 00:59:07 <|amethyst> so this is probably specific to &L, *but* why doesn't it screw up all markers 00:59:33 huh 00:59:48 so it might be different with &P ? 01:00:03 -!- omarax has quit [Remote host closed the connection] 01:00:24 <|amethyst> almost certainly, because this call to dungeon_terrain_changed only happens when !crawl_state.generating_level 01:00:49 indeed 01:00:55 marker is defined when I use &P 01:02:02 -!- eb_ has quit [] 01:02:08 <|amethyst> oh, and if it didn't get shifted 01:02:23 <|amethyst> remove_markers_and_listeners_at gets called right after dungeon_terrain_changed 01:02:37 <|amethyst> I think probably you need to place the marker slightly later? 01:02:46 hmmmm 01:03:07 <|amethyst> in map_lines::apply_markers perhaps? 01:03:22 <|amethyst> which loops over all the markers in map_lines 01:03:35 isn't map lines a thing that gets called before vault placement 01:03:43 there's something about that 01:03:49 or maybe I'm confusing it with something else 01:03:55 <|amethyst> yes, but apply_markers gets called as part of placement 01:04:18 <|amethyst> it takes the placement position as its argument 01:04:40 oh ok 01:04:54 <|amethyst> the code I'm looking at btw is 01:05:00 <|amethyst> !source vault_placement::apply_grid 01:05:01 1/1. https://github.com/crawl/crawl/blob/master/crawl-ref/source/dungeon.cc#L6608 01:05:24 right, where _vault_grid() gets called 01:05:52 <|amethyst> which calls _vault_grid, then terrain changed and remove markers, then apply_overlays (which calls apply_markers) 01:06:04 hrm, alright 01:06:10 so the only thing is I need the placement 01:06:16 and to be able to lookup the glyph like I'm doing 01:06:23 I can do all this from apply_markers? 01:06:29 <|amethyst> hm 01:06:39 <|amethyst> possibly? 01:07:16 I don't think map_lines is connected to a placement in any direct way 01:07:45 <|amethyst> yeah, the connection is in the other direction 01:07:51 <|amethyst> hm 01:07:57 <|amethyst> perhaps: 01:07:59 probably why I tried to put it where I did 01:08:06 without realizing the clear 01:08:42 <|amethyst> let me try something 01:11:06 Unstable branch on CRAWL.XTAHUA.COM updated to: 0.20-a0-899-g09a9bfb (34) 01:13:09 <|amethyst> okay, this works, but it's ugly 01:13:24 <|amethyst> - env.markers.add(new map_position_marker(where, dest)); 01:13:24 <|amethyst> + place.map.map.add_marker( 01:13:24 <|amethyst> + new map_position_marker(where - place.pos, dest)); 01:13:59 oh 01:14:12 <|amethyst> it feels like a huge violation of layering 01:14:29 yeah, but is part of this a problem with map_lines 01:14:36 which is something created to represent the map/des itself 01:14:43 and it's doing this marker placement code 01:14:54 which is inherently something it seems that place should be doing 01:15:20 <|amethyst> well, the position is being passed in to the map_lines method from placement 01:15:30 <|amethyst> but yeah, it is a bit weird 01:17:08 <|amethyst> another solution might be 01:18:42 <|amethyst> clear the existing markers and listeners first, then call _vault_grid, then do the dungeon_terrain_changed check but tell it not to move markers etc 01:19:36 <|amethyst> but it still needs to move some stuff to avoid winding up with items in the walls when you do &L 01:20:09 thanks for all the help 01:20:26 <|amethyst> and it still wouldn't change the fact that your marker is getting added at a different time from other markers, just reduce the consequences 01:20:34 <|amethyst> np, happy hacking! 01:20:41 btw 01:20:45 when you were gdb-ing this 01:20:52 you just set a watchpoint on env.markers 01:21:00 and look at the backtrace with each break? 01:21:09 <|amethyst> the first one was good enough 01:21:19 <|amethyst> it's WAAAAY slow on my computer 01:21:32 this is one of those problems I'd have been unsure how to use gdb effectively 01:21:41 "data mysteriously changed by who knows what" 01:21:52 yeah I recall watchpoints being pretty slow 01:22:04 <|amethyst> watch -l is somewhat faster 01:22:29 <|amethyst> since then you're just watching a range of memory, rather than evaluating an expression 01:22:46 <|amethyst> but I could imagine watch -l not working with all data structures 01:23:16 <|amethyst> e.g. if you watch -l a vector you wouldn't see a change to its contents, only its size, because the contents are on the heap, not in the vector itself 01:25:47 I will look into watch -l 01:27:24 <|amethyst> I guess watch -l on a map would only happen to notice if the tree gets rebalanced so the root changes 01:27:34 <|amethyst> probably? 01:27:57 <|amethyst> not sure about the details... I am hardly a power user of gdb 01:28:19 -!- bonghitz has quit [Ping timeout: 240 seconds] 01:35:42 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 01:53:53 -!- KurzedMetal has quit [Read error: Connection reset by peer] 01:54:23 -!- aditya has quit [Ping timeout: 264 seconds] 01:59:54 -!- eb_ has quit [Read error: Connection reset by peer] 02:00:03 -!- omarax has quit [Remote host closed the connection] 02:06:48 -!- mong has quit [Quit: Leaving] 02:09:05 -!- Pacra_ has joined ##crawl-dev 02:09:16 -!- Pacra has quit [Read error: Connection reset by peer] 02:17:06 -!- dextur has quit [Quit: Page closed] 02:19:41 Unstable branch on crawl.develz.org updated to: 0.20-a0-899-g09a9bfb (34) 02:38:51 -!- dtsund has joined ##crawl-dev 02:41:59 -!- Perryman` has quit [Read error: Connection reset by peer] 02:56:42 -!- ig0rbit has quit [Read error: Connection reset by peer] 02:57:54 Windows builds of master branch on crawl.develz.org updated to: 0.20-a0-899-g09a9bfb 02:59:35 -!- bgiannan_ has joined ##crawl-dev 03:00:03 -!- omarax has quit [Remote host closed the connection] 03:01:58 -!- orbisvicis has quit [Ping timeout: 240 seconds] 03:02:16 -!- Amnesiac has quit [Ping timeout: 260 seconds] 03:02:36 -!- ontoclasm has quit [Quit: Leaving.] 03:03:50 -!- zxc has quit [Read error: Connection reset by peer] 03:03:55 -!- Amnesiac_ is now known as Amnesiac 03:04:38 -!- Kalir has quit [Quit: I'M OUT SON. PEACE, LOVE, EXPLOSIONS.] 03:11:16 -!- Zeor has quit [Quit: Leaving.] 03:11:58 -!- HellTiger has quit [Ping timeout: 240 seconds] 03:12:48 -!- Blazinghand has joined ##crawl-dev 03:13:14 -!- CanOfWorms has quit [Quit: ChatZilla 0.9.92 [Firefox 3.6.28/20120306064154]] 03:17:45 Unstable branch on crawl.beRotato.org updated to: 0.20-a0-899-g09a9bfb (34) 03:18:03 -!- muravey has quit [Ping timeout: 268 seconds] 03:18:27 -!- muravey has joined ##crawl-dev 03:25:29 -!- muravey has quit [Read error: Connection reset by peer] 03:46:05 -!- GauHelldragon has quit [Ping timeout: 246 seconds] 03:46:42 -!- Blazinghand has quit [Quit: This computer has gone to sleep] 03:53:38 Monster database of master branch on crawl.develz.org updated to: 0.20-a0-899-g09a9bfb 03:54:23 -!- Pacra_ has quit [Ping timeout: 264 seconds] 04:00:14 -!- omarax has quit [Remote host closed the connection] 04:00:28 -!- Cerpin has quit [Ping timeout: 240 seconds] 04:08:56 -!- johlstei__ has joined ##crawl-dev 04:12:15 -!- johlstei_ has quit [Ping timeout: 276 seconds] 04:17:14 -!- bgiannan_ has quit [Ping timeout: 246 seconds] 04:20:40 -!- Tux[Qyou] has joined ##crawl-dev 04:20:51 -!- Menche has quit [Ping timeout: 240 seconds] 04:22:39 -!- keipra has quit [Quit: Connection closed for inactivity] 04:27:28 -!- dtsund has quit [Remote host closed the connection] 04:38:06 -!- freechips has quit [Quit: WeeChat 1.7] 04:45:05 -!- bonghitz has quit [Remote host closed the connection] 04:45:11 -!- Ququman has joined ##crawl-dev 05:00:04 -!- omarax has quit [Remote host closed the connection] 05:08:48 -!- Menche_ has quit [Remote host closed the connection] 05:16:10 -!- cmcbot has quit [Remote host closed the connection] 05:22:20 -!- ProzacElf has quit [Ping timeout: 246 seconds] 05:44:29 hm. if you compile with different flags in a different cloned repo so that you can keep everything "as usual" in your usual repo, the compiler doesn't care, it sees new flags and starts fresh both times 05:44:46 !source beam.ench_power 05:44:47 Can't find beam.ench_power. 05:44:50 !source ench_power 05:44:51 1/1. https://github.com/crawl/crawl/blob/master/crawl-ref/source/beam.h#L66 05:46:38 -!- gh is now known as Guest88859 05:47:14 -!- Guest88859 has quit [Client Quit] 05:56:01 -!- LordSloth has quit [Read error: No route to host] 05:58:23 -!- LordSloth has joined ##crawl-dev 06:00:01 -!- omarax has quit [Remote host closed the connection] 06:09:28 -!- SteelNeuron has joined ##crawl-dev 06:12:20 -!- rossi has quit [Ping timeout: 260 seconds] 06:18:47 -!- scummos| has quit [Ping timeout: 260 seconds] 06:51:44 -!- jefus- has joined ##crawl-dev 06:55:39 -!- jeefus has quit [Ping timeout: 260 seconds] 07:00:01 -!- omarax has quit [Remote host closed the connection] 07:15:28 -!- Lasty1 has joined ##crawl-dev 07:16:24 -!- Lasty has quit [Ping timeout: 246 seconds] 07:17:25 -!- Tux[Qyou] has quit [Read error: Connection reset by peer] 07:18:16 -!- Tux[Qyou] has joined ##crawl-dev 08:00:01 -!- omarax has quit [Remote host closed the connection] 08:03:49 -!- SteelNeuron has quit [Ping timeout: 260 seconds] 08:12:30 -!- Fixer has joined ##crawl-dev 08:25:50 -!- M-bbigras has quit [Remote host closed the connection] 08:28:25 -!- LordSloth has quit [Ping timeout: 256 seconds] 08:30:34 -!- LordSloth has joined ##crawl-dev 08:38:22 -!- LordSloth has quit [Read error: Connection reset by peer] 08:43:13 -!- agaric has quit [Quit: bye] 08:44:10 -!- Lasty has joined ##crawl-dev 08:44:27 -!- Lasty1 has quit [Ping timeout: 240 seconds] 08:48:02 -!- zxc has joined ##crawl-dev 08:48:26 -!- Lasty has quit [Ping timeout: 240 seconds] 08:48:26 -!- DrKe has quit [Read error: Connection reset by peer] 08:52:00 -!- laj1 has joined ##crawl-dev 08:54:30 -!- Lasty has joined ##crawl-dev 08:56:12 -!- DrKe has joined ##crawl-dev 08:58:35 -!- geekosaur has quit [Excess Flood] 08:59:04 -!- amalloy_ is now known as amalloy 09:00:01 -!- geekosaur has joined ##crawl-dev 09:00:01 -!- omarax has quit [Remote host closed the connection] 09:13:28 -!- adelrune has joined ##crawl-dev 09:23:02 -!- Lasty1 has joined ##crawl-dev 09:25:12 -!- Lasty has quit [Ping timeout: 246 seconds] 09:26:59 -!- Tux[Qyou] has quit [Read error: Connection reset by peer] 09:28:34 -!- Tux[Qyou] has joined ##crawl-dev 09:39:01 !source is_valid_mutation 09:39:02 Can't find is_valid_mutation. 09:39:05 !source _is_valid_mutation 09:39:05 1/1. https://github.com/crawl/crawl/blob/master/crawl-ref/source/mutation.cc#L229 09:41:09 -!- rossi has quit [Ping timeout: 264 seconds] 09:45:21 -!- scummos__ has quit [Ping timeout: 264 seconds] 10:00:02 -!- omarax has quit [Remote host closed the connection] 10:02:28 -!- amalloy is now known as amalloy_ 10:20:07 -!- laj1 has quit [Ping timeout: 240 seconds] 10:22:15 -!- laj1 has joined ##crawl-dev 10:34:31 -!- geekosaur has quit [Excess Flood] 10:37:32 -!- geekosaur has joined ##crawl-dev 10:51:48 -!- Sequell has quit [Remote host closed the connection] 10:51:59 -!- Sequell has joined ##crawl-dev 10:54:58 -!- Kalir has quit [Changing host] 10:57:22 -!- Cerpin has joined ##crawl-dev 10:57:36 -!- oberstein has quit [Ping timeout: 246 seconds] 11:00:01 -!- omarax has quit [Remote host closed the connection] 11:00:09 -!- Cerpin has quit [Client Quit] 11:00:25 -!- Cerpin has joined ##crawl-dev 11:00:33 -!- oberstein has joined ##crawl-dev 11:00:37 -!- Cerpin has quit [Client Quit] 11:01:24 -!- Cerpin has joined ##crawl-dev 11:04:45 -!- Cerpin has quit [Client Quit] 11:05:04 -!- Cerpin has joined ##crawl-dev 11:13:13 -!- Cerpin has quit [Quit: leaving] 11:13:29 -!- Cerpin has joined ##crawl-dev 11:18:24 -!- Lasty1 has quit [Quit: Leaving.] 11:19:41 -!- Lasty has joined ##crawl-dev 11:25:57 -!- Kalir has quit [Quit: I'M OUT SON. PEACE, LOVE, EXPLOSIONS.] 11:41:11 -!- MakMorn has quit [Remote host closed the connection] 11:43:33 -!- MakMorn has joined ##crawl-dev 11:48:11 %git :/Stomp 11:48:11 07Brannock02 * 0.20-a0-879-g2c13fcc: Update Stomp description (10976) 10(3 days ago, 1 file, 2+ 3-) 13https://github.com/crawl/crawl/commit/2c13fcc11f2c 11:48:39 -!- Perryman has quit [Read error: Connection reset by peer] 11:49:16 !tell brannock Your update to the Stomp description is incorrect: the percentage of the monsters HP doesn't scale with Invo, it's static. There is a non-percentile added damage that does scale with Invo. 11:49:17 Lasty: OK, I'll let brannock know. 12:00:01 -!- omarax has quit [Remote host closed the connection] 12:06:04 -!- frd has quit [Quit: und weg...] 12:09:24 -!- Dingo has quit [Quit: Leaving] 12:14:57 -!- hellmonk has joined ##crawl-dev 12:23:59 -!- KamiKatze has quit [Ping timeout: 260 seconds] 12:29:44 -!- Patashu_ has joined ##crawl-dev 12:30:07 -!- QuailChaser is now known as Menche 12:32:07 -!- Patashu has quit [Ping timeout: 240 seconds] 12:34:27 -!- Pacra_ has joined ##crawl-dev 12:49:16 -!- adelrune has quit [Ping timeout: 246 seconds] 12:49:34 Sphorg (L19 GhMo) (Shoals:2) 13:00:02 -!- omarax has quit [Remote host closed the connection] 13:04:12 -!- bonghitz has quit [Remote host closed the connection] 13:05:24 -!- manman has quit [Ping timeout: 260 seconds] 13:12:34 Unstable branch on crawl.akrasiac.org updated to: 0.20-a0-899-g09a9bfb (34) 13:18:30 -!- epsilonhalbe has quit [Quit: Leaving.] 13:18:49 -!- pekkekk has quit [Ping timeout: 260 seconds] 13:26:32 -!- zxc has quit [Read error: Connection reset by peer] 13:27:54 -!- Boatshow has quit [Ping timeout: 268 seconds] 13:32:19 -!- simmarine has joined ##crawl-dev 13:37:03 -!- Blazinghand has joined ##crawl-dev 13:37:33 -!- Shimatora has quit [Ping timeout: 264 seconds] 13:37:51 -!- Shimatora_ is now known as Shimatora 13:40:22 -!- oberstein has quit [Ping timeout: 246 seconds] 13:42:51 -!- Blazinghand has quit [Quit: This computer has gone to sleep] 13:43:19 -!- oberstein has joined ##crawl-dev 13:49:15 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 13:50:52 -!- oberstein has quit [Ping timeout: 246 seconds] 13:54:20 -!- oberstein has joined ##crawl-dev 14:00:02 -!- omarax has quit [Remote host closed the connection] 14:00:57 -!- scummos__ has quit [Ping timeout: 264 seconds] 14:05:49 -!- bitcoinbastard has quit [Ping timeout: 258 seconds] 14:15:48 -!- DrKe has quit [Ping timeout: 240 seconds] 14:16:07 -!- DrKe has joined ##crawl-dev 14:17:13 -!- ontoclasm has joined ##crawl-dev 14:32:31 -!- oberstein has quit [Ping timeout: 246 seconds] 14:33:59 -!- Patashu has joined ##crawl-dev 14:35:24 -!- oberstein has joined ##crawl-dev 14:36:21 -!- Patashu_ has quit [Ping timeout: 268 seconds] 14:43:34 -!- Patashu_ has joined ##crawl-dev 14:45:59 -!- oleum has quit [Ping timeout: 276 seconds] 14:46:13 -!- Patashu has quit [Ping timeout: 268 seconds] 14:53:45 -!- Shimatora has quit [Ping timeout: 264 seconds] 14:53:46 -!- Shimatora_ is now known as Shimatora 15:00:01 -!- omarax has quit [Remote host closed the connection] 15:03:17 -!- Kalir has quit [Changing host] 15:09:39 -!- Xenobreeder has quit [Ping timeout: 260 seconds] 15:12:46 -!- oberstein has quit [Ping timeout: 246 seconds] 15:13:23 -!- THERetroGamerNY has quit [Quit: Be Blessed!] 15:15:58 -!- oberstein has joined ##crawl-dev 15:16:49 -!- ProzacElf has joined ##crawl-dev 15:28:54 -!- quinn has joined ##crawl-dev 15:29:15 -!- quinn has quit [Client Quit] 15:29:26 -!- Shard1697 has joined ##crawl-dev 15:45:56 -!- simmarine has quit [Read error: Connection reset by peer] 15:46:30 -!- simmarine has joined ##crawl-dev 16:00:01 -!- omarax has quit [Remote host closed the connection] 16:05:01 -!- Fixer_ has joined ##crawl-dev 16:05:35 -!- Fixer has quit [Ping timeout: 260 seconds] 16:08:09 -!- ipsum_ has quit [Read error: Connection reset by peer] 16:11:24 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 16:16:07 -!- bgiannan_ has joined ##crawl-dev 16:26:13 -!- FunkyBomb has quit [Read error: Connection reset by peer] 16:26:16 !learn add crab_rule http://s16.postimg.org/citg7e7n9/image.png 16:26:17 crab rule[2/2]: http://s16.postimg.org/citg7e7n9/image.png 16:31:27 -!- Xenobreeder_ is now known as Xenobreeder 16:31:42 03MarvinPA02 07* 0.20-a0-900-gbcc9fa8: Further simplify some Wu Jian handling 10(59 seconds ago, 2 files, 13+ 29-) 13https://github.com/crawl/crawl/commit/bcc9fa83e79f 16:32:23 -!- bitcoinbastard_ has quit [Read error: Connection reset by peer] 16:33:56 -!- Fixer_ is now known as Fixer 16:35:54 -!- Patashu has joined ##crawl-dev 16:38:26 gammafunk's crabby today, I see 16:38:27 -!- Patashu_ has quit [Ping timeout: 268 seconds] 16:45:36 there is only one rule 16:45:38 and it IS crab 16:56:04 03MarvinPA02 07* 0.20-a0-901-g27f6fa8: Don't place clouds through walls during Heaven on Earth 10(80 seconds ago, 2 files, 15+ 6-) 13https://github.com/crawl/crawl/commit/27f6fa8fc67a 16:59:59 -!- Ge0ff has quit [Quit: Leaving] 17:00:03 -!- omarax has quit [Remote host closed the connection] 17:00:13 -!- Pleasingfungus has joined ##crawl-dev 17:02:14 -!- aves has quit [Ping timeout: 260 seconds] 17:03:31 fr remove the cursed weapon thing from wights 17:04:40 -!- bgiannan_ has quit [Ping timeout: 256 seconds] 17:06:43 can't believe you hate Tolkein Lore 17:07:51 i think i'd meant to do that a while ago (or at least make the curses identified or something) but didn't for some reason 17:08:24 since yeah, it's definitely silly! 17:09:26 Unstable branch on crawl.jorgrun.rocks updated to: 0.20-a0-901-g27f6fa8 (34) 17:10:27 Pleasingfungus: You mean Tolkien 17:10:48 honestly, you need to pour over you spelling more 17:12:30 tolkien lore had an elf fall in love with a human which is completely unrealistic 17:12:53 no real elf would be interested in a crappy human 17:14:20 maybe the elf has amazed by the humans xp aptitude 17:14:32 s/has/was/ 17:18:41 -!- Pleasingfungus has quit [Remote host closed the connection] 17:21:10 -!- Tux[Qyou] has quit [Read error: Connection reset by peer] 17:22:32 -!- Blazinghand has joined ##crawl-dev 17:35:47 MarvinPA: another thing to get rid of "your plate armour prevents you from hitting the X" 17:36:40 nobody unspoiled understands what that message means and they end up wearing no armour/massively overtraining armour skill to try to get rid of the message 17:39:53 -!- Blazinghand has quit [Quit: This computer has gone to sleep] 17:44:44 -!- Blazinghand has joined ##crawl-dev 17:44:50 And there's nothing wrong with that 17:48:13 imo actively misleading players is bad 17:48:19 -!- dextur has quit [Ping timeout: 260 seconds] 17:48:29 How can the game be challenging then 17:48:34 You're the one always saying crawl is too easy! 17:50:21 i am? 17:50:27 -!- rj54x has quit [Quit: Page closed] 17:50:28 Yeah 17:51:49 i maintain that crawl is easy with spoilers but i dont remember asking for difficulty increases 17:52:43 and in any case (I assume I'm getting trolled here) if I were I would want a difficulty increase that increases the difficulty for spoiled players too, not just newbies 17:56:40 -!- Blazinghand has quit [Quit: This computer has gone to sleep] 17:59:10 -!- Blazinghand has joined ##crawl-dev 18:00:01 -!- omarax has quit [Remote host closed the connection] 18:01:19 -!- Blazinghand has quit [Client Quit] 18:05:00 -!- CanOfWorms has joined ##crawl-dev 18:05:32 -!- Blazinghand has joined ##crawl-dev 18:07:20 -!- bitcoinbastard has quit [Client Quit] 18:18:24 -!- yesno has quit [Ping timeout: 260 seconds] 18:18:58 -!- ProzacElf has quit [Ping timeout: 246 seconds] 18:23:21 -!- Shimatora has quit [Quit: z] 18:24:38 -!- Blazinghand has quit [Quit: This computer has gone to sleep] 18:25:45 -!- neunon has quit [Quit: ZNC - http://znc.in] 18:26:55 -!- neunon has joined ##crawl-dev 18:31:38 has there been any discussion/feedback on the alternative scales for the Cyno skill system from the spreadsheet I posted? any other suggested scales? 18:41:25 -!- Dixie has quit [Read error: Connection reset by peer] 18:46:24 -!- Psyclone has quit [Quit: Page closed] 18:48:48 -!- Dixie has quit [Ping timeout: 240 seconds] 18:51:50 -!- jeefus has joined ##crawl-dev 18:53:58 -!- yesno__ is now known as yesno 18:55:40 -!- Amnesiac has quit [Quit: Page closed] 18:55:44 -!- jefus- has quit [Ping timeout: 260 seconds] 19:00:02 -!- omarax has quit [Remote host closed the connection] 19:06:25 -!- Fixer has quit [Ping timeout: 260 seconds] 19:07:43 Unstable branch on underhound.eu updated to: 0.20-a0-901-g27f6fa8 (34) 19:08:11 -!- Fixer has joined ##crawl-dev 19:09:30 -!- IRCFrEAK has quit [Quit: jIRCii - http://www.oldschoolirc.com] 19:13:14 -!- madafe has quit [Quit: Page closed] 19:35:29 -!- xnavy_ has quit [Read error: Connection reset by peer] 20:00:02 -!- omarax has quit [Remote host closed the connection] 20:01:18 -!- Rast-- has joined ##crawl-dev 20:04:40 -!- Rast- has quit [Ping timeout: 246 seconds] 20:12:39 -!- wheals has joined ##crawl-dev 20:12:58 -!- Blazinghand has joined ##crawl-dev 20:19:58 -!- laj1 has quit [Ping timeout: 258 seconds] 20:21:53 -!- laj1 has joined ##crawl-dev 20:28:59 -!- wheals has quit [Remote host closed the connection] 20:38:27 -!- scummos| has quit [Quit: Konversation terminated!] 20:39:08 -!- scummos| has quit [Client Quit] 20:39:40 -!- scummos| has quit [Read error: Connection reset by peer] 20:40:12 -!- scummos| has quit [Client Quit] 20:40:48 -!- Ququman has quit [Remote host closed the connection] 20:40:48 -!- scummos| has quit [Read error: Connection reset by peer] 20:41:24 -!- scummos| has quit [Client Quit] 20:41:45 -!- wheals has joined ##crawl-dev 20:42:05 -!- scummos| has quit [Client Quit] 20:42:42 -!- scummos| has quit [Client Quit] 20:43:12 -!- scummos^ has quit [Client Quit] 20:43:24 -!- Kalir has quit [Ping timeout: 256 seconds] 20:43:46 -!- scummos^ has quit [Read error: Connection reset by peer] 20:44:29 -!- scummos^ has quit [Client Quit] 20:44:59 -!- scummos| has quit [Client Quit] 20:45:36 -!- scummos| has quit [Client Quit] 20:46:10 -!- scummos| has quit [Client Quit] 20:46:41 -!- scummos| has quit [Client Quit] 20:47:16 -!- scummos| has quit [Client Quit] 20:48:32 -!- scummos| has quit [Client Quit] 20:49:02 -!- scummos| has quit [Read error: Connection reset by peer] 20:49:39 -!- scummos| has quit [Read error: Connection reset by peer] 20:50:16 -!- scummos| has quit [Client Quit] 20:50:55 -!- scummos| has quit [Client Quit] 20:51:20 -!- scummos| has quit [Read error: Connection reset by peer] 20:52:01 -!- scummos| has quit [Client Quit] 20:52:39 -!- scummos| has quit [Client Quit] 20:52:55 -!- Fixer has quit [Remote host closed the connection] 20:53:10 -!- scummos| has quit [Read error: Connection reset by peer] 20:53:45 -!- scummos| has quit [Read error: Connection reset by peer] 20:54:24 -!- scummos| has quit [Read error: Connection reset by peer] 20:55:00 -!- scummos| has quit [Client Quit] 20:55:35 -!- scummos| has quit [Client Quit] 20:56:12 -!- scummos| has quit [Read error: Connection reset by peer] 20:56:44 -!- scummos| has quit [Client Quit] 20:57:20 -!- scummos| has quit [Client Quit] 20:57:55 -!- scummos| has quit [Client Quit] 20:58:31 -!- scummos| has quit [Client Quit] 20:59:06 -!- scummos| has quit [Client Quit] 20:59:45 -!- scummos| has quit [Client Quit] 21:00:02 -!- omarax has quit [Remote host closed the connection] 21:00:15 -!- scummos^ has quit [Client Quit] 21:00:52 -!- scummos^ has quit [Client Quit] 21:01:27 -!- scummos^ has quit [Client Quit] 21:01:30 -!- bgiannan_ has joined ##crawl-dev 21:02:05 -!- scummos^ has quit [Client Quit] 21:02:39 -!- scummos| has quit [Read error: Connection reset by peer] 21:03:16 -!- scummos| has quit [Client Quit] 21:03:47 -!- scummos| has quit [Client Quit] 21:04:32 -!- scummos| has quit [Client Quit] 21:05:02 -!- scummos^ has quit [Read error: Connection reset by peer] 21:05:36 -!- scummos^ has quit [Client Quit] 21:06:11 -!- scummos^ has quit [Read error: Connection reset by peer] 21:06:22 -!- bgiannan_ has quit [Ping timeout: 264 seconds] 21:06:49 -!- scummos^ has quit [Client Quit] 21:07:23 -!- scummos^ has quit [Read error: Connection reset by peer] 21:08:01 -!- scummos^ has quit [Client Quit] 21:08:31 -!- scummos^ has quit [Client Quit] 21:09:07 -!- scummos^ has quit [Read error: Connection reset by peer] 21:10:18 -!- Kalir has quit [Changing host] 21:10:21 -!- scummos^ has quit [Read error: Connection reset by peer] 21:11:02 -!- scummos^ has quit [Client Quit] 21:11:33 -!- scummos| has quit [Client Quit] 21:12:12 -!- scummos| has quit [Client Quit] 21:13:20 -!- scummos| has quit [Client Quit] 21:14:00 -!- scummos| has quit [Client Quit] 21:14:25 -!- scummos| has quit [Read error: Connection reset by peer] 21:15:07 -!- scummos| has quit [Client Quit] 21:15:39 -!- scummos| has quit [Client Quit] 21:15:43 -!- rossi has quit [Ping timeout: 246 seconds] 21:16:11 -!- scummos| has quit [Read error: Connection reset by peer] 21:16:48 -!- scummos| has quit [Client Quit] 21:17:27 -!- scummos| has quit [Client Quit] 21:18:03 -!- scummos| has quit [Client Quit] 21:18:35 -!- scummos| has quit [Client Quit] 21:19:09 -!- ProzacElf has joined ##crawl-dev 21:19:09 -!- scummos| has quit [Read error: Connection reset by peer] 21:19:46 -!- scummos| has quit [Client Quit] 21:20:27 -!- scummos| has quit [Client Quit] 21:20:56 -!- scummos^ has quit [Read error: Connection reset by peer] 21:21:33 -!- scummos^ has quit [Client Quit] 21:22:06 -!- scummos^ has quit [Read error: Connection reset by peer] 21:22:47 -!- scummos^ has quit [Client Quit] 21:23:22 -!- scummos^ has quit [Client Quit] 21:23:53 -!- scummos^ has quit [Read error: Connection reset by peer] 21:24:29 -!- scummos^ has quit [Client Quit] 21:25:02 -!- scummos^ has quit [Client Quit] 21:25:40 -!- scummos^ has quit [Client Quit] 21:26:21 -!- scummos^ has quit [Read error: Connection reset by peer] 21:26:46 -!- scummos^ has quit [Client Quit] 21:27:17 -!- tarabluh has quit [Quit: Page closed] 21:27:23 -!- scummos^ has quit [Read error: Connection reset by peer] 21:27:44 -!- Meattoad has quit [Quit: ChatZilla 0.9.93 [Firefox 52.0.1/20170316213829]] 21:28:06 -!- scummos^ has quit [Read error: Connection reset by peer] 21:28:44 -!- scummos| has quit [Client Quit] 21:28:54 -!- Boatshow has quit [Ping timeout: 268 seconds] 21:29:17 -!- scummos| has quit [Read error: Connection reset by peer] 21:29:48 -!- scummos| has quit [Client Quit] 21:30:23 -!- scummos| has quit [Client Quit] 21:30:59 https://www.reddit.com/r/dcss/comments/6057z3/warpers/ 21:31:03 -!- scummos| has quit [Client Quit] 21:31:10 no one points out the most useful thing a warper starts with 21:31:39 -!- scummos| has quit [Client Quit] 21:32:15 -!- scummos| has quit [Client Quit] 21:33:25 -!- scummos| has quit [Client Quit] 21:33:54 -!- scummos^ has quit [Read error: No route to host] 21:34:38 -!- scummos^ has quit [Client Quit] 21:34:58 -!- hittemvvvhard has quit [Quit: ik ga slapen] 21:35:05 -!- scummos| has quit [Read error: No route to host] 21:35:40 -!- scummos| has quit [Client Quit] 21:36:21 -!- scummos| has quit [Client Quit] 21:36:56 -!- scummos| has quit [Client Quit] 21:37:06 which is???? 21:37:18 it's a mystery 21:37:21 nobody knows.... 21:37:28 -!- scummos| has quit [Client Quit] 21:38:04 -!- scummos| has quit [Client Quit] 21:38:34 warpers are one of the weakest starting backgrounds? 21:38:40 -!- scummos| has quit [Client Quit] 21:38:42 my goodness 21:38:48 what have warpers lost recently 21:38:51 ??warper 21:38:51 warper[1/1]: A hybrid class focused around translocations. Starts with a choice of weapons, some tomahawks of dispersal, skill in fighting, a scroll of blinking and a {book of Spatial Translocations}. 21:38:56 they lost apportation 21:38:59 !!! 21:39:18 -!- scummos| has quit [Client Quit] 21:39:52 brutal nerfs 21:39:53 -!- scummos| has quit [Client Quit] 21:39:55 %git :/[Pp]ortal [Pp]roj 21:39:55 07Doesnty02 {Brannock} * 0.20-a0-739-g6bb112f: Add Cancel Portal Projectile ability (#471) 10(3 weeks ago, 6 files, 21+ 0-) 13https://github.com/crawl/crawl/commit/6bb112f81847 21:40:02 hi 21:40:02 Doesnty: You have 1 message. Use !messages to read it. 21:40:03 !gitgrep 2 [Pp]ortal [Pp]roj 21:40:04 %git HEAD^{/[Pp]ortal [Pp]roj}^^{/[Pp]ortal [Pp]roj} 21:40:04 07Brannock02 * 0.20-a0-704-gbbd08f1: Make Portal Projectile use Hexes 10(4 weeks ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/bbd08f1b7cbe 21:40:10 dude 21:40:10 -!- Avack has quit [Quit: Leaving.] 21:40:15 I didn't even realize this happened 21:40:20 !gitgrep 3 [Pp]ortal [Pp]roj 21:40:20 %git HEAD^{/[Pp]ortal [Pp]roj}^^{/[Pp]ortal [Pp]roj}^^{/[Pp]ortal [Pp]roj} 21:40:21 07Brannock02 * 0.20-a0-702-gea68139: Swap Gravitas and Portal Projectile 10(4 weeks ago, 1 file, 2+ 2-) 13https://github.com/crawl/crawl/commit/ea6813923d3f 21:40:25 -!- scummos| has quit [Read error: Connection reset by peer] 21:40:26 yeah that also happened 21:40:42 would b good to remove warper but not bc theyre weak 21:40:44 apportation is clearly the stronger nerf 21:40:59 -!- scummos| has quit [Read error: Connection reset by peer] 21:41:02 warper confuses me 21:41:22 the book would be rad if they had a ranged weapon but instead they get 21:41:26 5 dispersal tomahawks 21:41:39 -!- scummos| has quit [Client Quit] 21:42:09 -!- scummos| has quit [Read error: Connection reset by peer] 21:42:49 -!- scummos| has quit [Client Quit] 21:43:21 -!- scummos| has quit [Client Quit] 21:44:31 -!- scummos| has quit [Client Quit] 21:44:56 http://i.imgur.com/29ZmOuz.png 21:45:03 It's 2017, and mikee is back, advising new players 21:45:05 warms the heart 21:45:06 -!- scummos| has quit [Client Quit] 21:45:27 -!- Pacra_ has quit [Ping timeout: 258 seconds] 21:45:41 -!- scummos| has quit [Read error: Connection reset by peer] 21:46:00 qwyjybo is mikee?! 21:46:32 -!- scummos| has quit [Client Quit] 21:46:56 -!- scummos^ has quit [Read error: Connection reset by peer] 21:47:03 yep! 21:47:14 he plays occassionally now as tartakower 21:47:15 I think 21:47:18 !lg tartakower 21:47:19 194. tartakower the Grand Master (L27 DsVM of Dithmenos), escaped with the Orb and 3 runes on 2017-02-25 10:58:30, with 1607500 points after 78255 turns and 10:15:44. 21:47:21 yes 21:47:24 nice 21:47:26 that's his first Dith win btw 21:47:33 deng 21:47:37 -!- scummos^ has quit [Client Quit] 21:47:41 -!- GetYeFlask has quit [Quit: Leaving] 21:48:05 -!- scummos| has quit [Client Quit] 21:48:39 -!- scummos| has quit [Client Quit] 21:49:24 -!- scummos| has quit [Client Quit] 21:49:53 -!- scummos^ has quit [Read error: Connection reset by peer] 21:50:19 oh good, I tweeted that and grunt saw (and liked) it 21:50:27 -!- rumflump has quit [Ping timeout: 240 seconds] 21:50:34 -!- scummos^ has quit [Read error: Connection reset by peer] 21:50:59 -!- scummos| has quit [Read error: Connection reset by peer] 21:51:41 -!- scummos| has quit [Read error: Connection reset by peer] 21:52:14 -!- scummos| has quit [Client Quit] 21:52:49 -!- scummos| has quit [Client Quit] 21:53:07 -!- scummos__ has quit [Remote host closed the connection] 21:53:24 -!- scummos| has quit [Client Quit] 21:53:56 -!- scummos| has quit [Read error: Connection reset by peer] 21:54:34 -!- scummos| has quit [Client Quit] 21:55:15 -!- scummos| has quit [Client Quit] 21:55:46 -!- scummos| has quit [Client Quit] 21:56:21 -!- scummos| has quit [Client Quit] 21:56:56 -!- scummos| has quit [Client Quit] 21:57:30 -!- scummos| has quit [Read error: Connection reset by peer] 21:58:14 -!- scummos| has quit [Client Quit] 21:58:47 -!- scummos__ has quit [Client Quit] 21:59:17 -!- aditya has joined ##crawl-dev 22:00:02 -!- omarax has quit [Remote host closed the connection] 22:03:18 -!- scummos| has quit [Ping timeout: 256 seconds] 22:05:38 -!- eb__ has quit [Quit: Going offline, see ya! (www.adiirc.com)] 22:11:46 -!- rossi has quit [Ping timeout: 264 seconds] 22:13:08 -!- Kalir has quit [Ping timeout: 260 seconds] 22:14:35 -!- MarvinPA_ has joined ##crawl-dev 22:16:07 -!- MarvinPA has quit [Ping timeout: 258 seconds] 22:32:02 -!- Xiberia has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 22:37:39 -!- Blazinghand has quit [Quit: This computer has gone to sleep] 22:40:49 -!- Yxhuvud has quit [Quit: No Ping reply in 180 seconds.] 22:42:50 -!- aditya has quit [Ping timeout: 260 seconds] 22:44:00 ceb (L23 GrFi) (Vaults:4) 22:46:25 !kw -rm ba 22:46:26 Deleted keyword: ba => race=barachian 22:46:28 !kw ba 22:46:29 No keyword 'ba' 22:46:34 hrm 22:46:50 guess sequell's repo still isn't updated? 22:47:08 !lg pekkekke won x=race 22:47:09 41. [race=Barachi] Pekkekk the Conqueror (L27 BaAr of Gozag), escaped with the Orb and 5 runes on 2017-03-19 01:56:50, with 2715800 points after 92180 turns and 6:32:56. 22:47:20 !kw ba race=barachi|barachian 22:47:21 Defined keyword: ba => race=barachi|barachian 22:51:00 -!- zxc has joined ##crawl-dev 22:51:59 brachi 22:51:59 ontoclasm: You have 2 messages. Use !messages to read them. 22:51:59 !messages 22:51:59 (1/2) rumflump said (3w 5d 15h 46m 5s ago): the IJC "golden clouds" look a bit like swirls of mustard. now that this god is in trunk, is it worthy of some help from your paintbrush? 22:52:03 !messages 22:52:04 (1/1) rumflump said (3d 10h 18m 35s ago): do you understand why this didn't work? bazaar wall tiles are still defaulting to the ugly grey speckled stone when the bazaar has the green grass floors, and the rumply red walls (which are less bad) when the bazaar has black floors https://github.com/yrmvgh/crawl/commit/5331a2540f7109400a7abaa0c4030f2a31dfd03f 22:52:51 barack obama 22:54:14 !tell rumflump Re: 5331a254 Vaults can specify tiles for the walls and floor of the level they're on, and those take precedence over the defaults in tileview.cc. You'll need to edit the individual bazaar vaults in .des. 22:54:15 ontoclasm: OK, I'll let rumflump know. 22:54:35 !tell rumflump At least that's what I would assume is the problem. 22:54:36 ontoclasm: OK, I'll let rumflump know. 22:54:57 -!- sgun__ has quit [Quit: Leaving] 23:00:02 -!- omarax has quit [Remote host closed the connection] 23:03:09 -!- rumflump has joined ##crawl-dev 23:10:54 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 23:16:40 -!- Tickenest has quit [Quit: Page closed] 23:19:01 -!- mizu_no_oto has quit [Client Quit] 23:21:08 how do people feel about HoE clouds blocking LOS? 23:24:35 -!- Pleasingfungus has joined ##crawl-dev 23:26:08 -!- Kalir has quit [Changing host] 23:43:46 -!- Pacra_ has joined ##crawl-dev 23:54:11 -!- bonghitz has quit [Read error: Connection reset by peer] 23:58:29 -!- Lasty has quit [Quit: Leaving.]