Jonathan Mugan
Jonathan Mugan
I can't run maps created with the current map editor on Linux.
I'll give it a try! Thanks!
Well, MPQ would let me change it, but it wouldn't keep the change. It would just revert back to 115. I'm on a mac with wine. Weird.
Came here looking for component diagrams :)
I had to overwrite `core.py` with the version from the repo.
I ran into this as well. I have 16 GB of memory. Is the recommended approach implementing the changes from the comment above?
I got it to work by being more selective about what I extracted from UMLS.
Same issue here. I just get a blank page and a trailing slash gives me a 403. The content is being returned, it just isn't being shown on the page.
I'm having mouse velocity issues as well on mac. For me, it is always returning 0.
My workaround was the use the arrow keys instead. You could add this code to `FirstPersonController.update` ``` self.rotation_y += held_keys['right arrow'] - held_keys['left arrow'] self.camera_pivot.rotation_x -= held_keys['up arrow'] - held_keys['down...