ItemIdentifier: remove dead TODO comment

This commit is contained in:
Dylan K. Taylor 2023-03-02 15:10:46 +00:00
parent 948aa059c3
commit 77fe0a69ba
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -33,9 +33,6 @@ class ItemIdentifier{
public static function fromBlock(Block $block) : self{
//negative item type IDs are treated as block IDs
//TODO: maybe an ItemBlockIdentifier is in order?
//TODO: this isn't vanilla-compliant, but it'll do for now - we only use the "legacy" item ID/meta for full type
//indexing right now, because item type IDs aren't granular enough
//this should be removed once that's addressed
return new self(-$block->getTypeId());
}