Skip to content

Commit

Permalink
Merge pull request #5 from uhmarlon/main
Browse files Browse the repository at this point in the history
fix server ip and port
  • Loading branch information
cramosk authored Oct 27, 2023
2 parents ab5395f + f10ce2d commit c4c4ca7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Teams/purple_saints/src/second.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { Socket } from 'net';
import { createCanvas, loadImage } from 'canvas';

const host: string = '10.201.77.56';
const port: number = 4321;
const host: string = '127.0.0.1';
const port: number = 1234;

// Get ENV variables and set to default values if they're not available
const MAX_X: number = 1285;
const MAX_Y: number = 725;

Expand Down

0 comments on commit c4c4ca7

Please sign in to comment.