add entity:get_player()

This commit is contained in:
MihailRis
2025-01-16 06:50:01 +03:00
parent 65fec4f4a9
commit 9cd3f3e4c8
5 changed files with 33 additions and 3 deletions
+1
View File
@@ -66,6 +66,7 @@ local Entity = {__index={
get_uid=function(self) return self.eid end,
def_index=function(self) return entities.get_def(self.eid) end,
def_name=function(self) return entities.def_name(entities.get_def(self.eid)) end,
get_player=function(self) return entities.get_player(self.eid) end,
}}
local entities = {}