| 738 | } |
| 739 | |
| 740 | void ScriptList::KeepList(ScriptList *list) |
| 741 | { |
| 742 | if (list == this) return; |
| 743 | |
| 744 | this->modifications++; |
| 745 | |
| 746 | ScriptList tmp; |
| 747 | tmp.AddList(this); |
| 748 | tmp.RemoveList(list); |
| 749 | this->RemoveList(&tmp); |
| 750 | } |
| 751 | |
| 752 | SQInteger ScriptList::_get(HSQUIRRELVM vm) |
| 753 | { |
nothing calls this directly
no test coverage detected