aboutsummaryrefslogtreecommitdiff
path: root/client/main.ha
diff options
context:
space:
mode:
Diffstat (limited to 'client/main.ha')
-rw-r--r--client/main.ha5
1 files changed, 2 insertions, 3 deletions
diff --git a/client/main.ha b/client/main.ha
index 4c70892..9b8f92b 100644
--- a/client/main.ha
+++ b/client/main.ha
@@ -45,7 +45,7 @@ export fn main() void = {
};
// connect to server
- const conn = match(dial::dial("tcp","ubq323.website","41460")) {
+ const conn = match(dial::dial("tcp","localhost","41460")) {
case let c: net::socket => yield c;
case let err: net::error =>
fmt::fatal("couldn't connect to server:",net::strerror(err));
@@ -139,8 +139,7 @@ export fn main() void = {
for (const packet => packet_reader::next(&packet_reader)!) {
match (packet) {
case let op: packet_reader::packet_drawop =>
- const opc = op as drawing::op_circle;
- drawing::perform(pictures, opc);
+ drawing::perform(pictures, op);
case let packet: packet_reader::packet_sendchunk =>
assert(packet.world_pos.0 % CHUNKSIZE == 0
&& packet.world_pos.1 % CHUNKSIZE == 0, "bad chunk world pos");