Skip to content

Commit

Permalink
Merge pull request #377 from Talishar/back-to-regular-gamestate-handler
Browse files Browse the repository at this point in the history
sub in old gamestate handler
  • Loading branch information
LaustinSpayce committed May 14, 2023
2 parents 628406b + 8e5b59a commit 8c0ae29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/game/play/Play.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import ChatCardDetail from '../components/elements/chatCardDetail/ChatCardDetail
import CardListZone from '../components/zones/cardListZone/CardListZone';
import ChainLinkSummaryContainer from '../components/elements/chainLinkSummary/ChainLinkSummary';
import ActiveLayersZone from '../components/zones/activeLayersZone/ActiveLayersZone';
import ExperimentalGameStateHandler from 'app/ExperimentalGameStateHandler';
import GameStateHandler from 'app/GameStateHandler';

function Play() {
return (
Expand All @@ -34,7 +34,7 @@ function Play() {
<OptionsMenu />
<PlayerInputPopUp />
<CardPortal />
<ExperimentalGameStateHandler />
<GameStateHandler />
<EventsHandler />
</div>
);
Expand Down

0 comments on commit 8c0ae29

Please sign in to comment.