This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
bertieb
/
itsd-project-code
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
feat: remove GameActor reference from GameState once assigned to AI
rdh-local-prototype-endturn
Rob Hallam
9 months ago
parent
7ac60058fa
commit
7a182cb7ea
1 changed files
with
1 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
app/structures/GameState.java
+ 1
- 0
app/structures/GameState.java
View File
@@ -41,5 +41,6 @@ public class GameState {
this.currentPlayer = 1;
this.currentPlayer = 1;
// create the AI player:
// create the AI player:
this.aiPlayer = new AIPlayer(this.gameActor);
this.aiPlayer = new AIPlayer(this.gameActor);
this.gameActor = null;
}
}
}
}
Write
Preview
Loading…
Cancel
Save