9 lines
330 B
Plaintext
Raw Normal View History

2022-08-16 15:28:01 -07:00
function c_moveunit(targetunit, destination) {
2022-08-22 10:10:15 -07:00
var theguy = c_gettile(targetunit.pos.x, targetunit.pos.y);
2022-08-22 23:49:38 -07:00
log(theguy.contents);
2022-08-23 01:34:45 -07:00
/*if !*/array_remove(theguy.contents, targetunit) //idhfnjg();
2022-08-16 15:28:01 -07:00
array_push(destination.contents, targetunit);
targetunit.pos.x = destination.x;
targetunit.pos.y = destination.y;
2022-08-22 10:10:15 -07:00
theguy.event();
2022-08-16 15:28:01 -07:00
}