diff -r 519f8a58c021 -r 6bac93097da3 gameServer/Actions.hs --- a/gameServer/Actions.hs Sat Sep 24 22:16:49 2011 +0400 +++ b/gameServer/Actions.hs Sat Sep 24 21:14:51 2011 +0400 @@ -1,4 +1,4 @@ -{-# LANGUAGE OverloadedStrings #-} +{-# LANGUAGE CPP, OverloadedStrings #-} module Actions where import Control.Concurrent @@ -507,9 +507,13 @@ return () processAction $ ModifyServerInfo (\s -> s{shutdownPending = True}) +#if defined(OFFICIAL_SERVER) processAction SaveReplay = do ri <- clientRoomA rnc <- gets roomsClients io $ do r <- room'sM rnc id ri saveReplay r +#else +processAction SaveReplay = return () +#endif