1
0
Fork 0

Nasal: fix gui.setCursor without cursor (aka warp)

This commit is contained in:
Thomas Geymayer 2014-01-17 01:06:36 +01:00
parent e1c200dbde
commit 785a334628

View file

@ -75,7 +75,7 @@ var setCursor = func(x = nil, y = nil, cursor = nil) {
args.getNode("cursor", 1).setIntValue(cursor);
}
fgcommand("set-cursor", args);
return args.getNode("cursor").getValue();
return args.getValue("cursor");
}
##