Found unused function

liquid_container
Mark 2016-04-07 17:29:40 +02:00
parent 7be17fba71
commit 69467d3c70
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ local is_constructing;
// This should be recongnized as a container by the interaction menu independent of its category.
public func IsContainer() { return !full_material; }
// disallow taking stuff out
public func RefuseTransfer(object toMove) { return true; }
public func RefuseTransfer(object toMove) { return true; } // TODO: this is not used by another function, is this a callback?
// disallow site cancellation. Useful e.g. for sites that are pre-placed for a game goal
public func MakeUncancellable() { no_cancel = true; return true; }