| 1367 | } |
| 1368 | |
| 1369 | GameValue GetNetIdObj(const GameState* state, GameValuePar oper1) |
| 1370 | { |
| 1371 | Object* obj = GetObject(oper1); |
| 1372 | if (!obj) |
| 1373 | { |
| 1374 | return NOTHING; |
| 1375 | } |
| 1376 | |
| 1377 | return NetObjToNetId(obj); |
| 1378 | } |
| 1379 | |
| 1380 | GameValue GetObjFromNetId(const GameState* state, GameValuePar oper) |
| 1381 | { |
nothing calls this directly
no test coverage detected