Feature - Implemented Don't trigger timein from chat requests

lostcalpolydude

Developer
Staff member
Occasionally, people leave mafia open on one computer, then go elsewhere and try to log in, only to be quickly left out because a chat update request triggers a timein. Preventing this seems to be as simple as
Code:
			if ( this.isChatRequest )
			{
				return true;
			}
in GenericRequest just above the LoginRequest.executeTimeInRequest() call. This provides no user feedback though, and I feel like that should be sorted out before actually making this change.
 
Top