Open main menu

Mohawk/Bugs

< Mohawk
Revision as of 06:01, 24 January 2011 by Clone2727 (talk | contribs) (add details on the bug with the bspit-gspit maglev)

This is a list of known bugs in the games that also occur in the original interpreters.

Riven

  • The maglev on Temple Island has no proper ambient sounds. When you board it on Temple Island, the wind sound will play. When you ride it back from Jungle Island, no sound will play.
  • The maglev between Book Making Island and Garden Island will always be on Garden Island (even if you just took it to Book Making Island). It seems the developers forgot to do an animation of the summoning of the tram from either side and just made it always appear instead (by setting the tram to be on Garden Island as you use it to go to Book Making Island). Strangely, they added some code just in case the tram is not present to just make it appear with no animation. Here's a script decompilation snippet of the maglev call button, with the relevant part being case 0 (taken from gspit card 31):
Hotspot 3:
	Stream Type 2:
		playMovieBlocking(2);
		switch (gnmagcar) {
			case 0:
				gnmagcar = 1;
				gnmagrot = 0;
				refreshCard();
				break;
			default:
				switch (gnmagrot) {
					case 1:
						playMovieBlocking(1);
						gnmagrot = 0;
						refreshCard();
						break;
				}
				break;
		}