Skip to content

Commit

Permalink
Temporary fix for classes duplication
Browse files Browse the repository at this point in the history
Why are they being called twice, if they're mentioned in the file once? This thing keeps getting more and more weird...
  • Loading branch information
St4lker0k765 committed Nov 30, 2024
1 parent 70169b9 commit ab3fb6f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/xrServerEntities/script_engine_export.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,18 +263,18 @@ void export_classes (lua_State *L)
CALifeHumanBrain::script_register(L);
CGameGraph::script_register(L);
CUIActorMenu::script_register(L);
CInventoryBox::script_register(L);
// CInventoryBox::script_register(L);
CActorCondition::script_register(L);
CAntirad::script_register(L);
CBottleItem::script_register(L);
// CAntirad::script_register(L);
// CBottleItem::script_register(L);
CCustomOutfit::script_register(L);
CCustomZone::script_register(L);
CFoodItem::script_register(L);
// CFoodItem::script_register(L);
CHudItem::script_register(L);
CInventoryItem::script_register(L);
CInventoryOwner::script_register(L);
CMedkit::script_register(L);
// CMedkit::script_register(L);
CPhysicsShellHolder::script_register(L);
CWeaponAmmo::script_register(L);
// CWeaponAmmo::script_register(L);
#endif
}

0 comments on commit ab3fb6f

Please sign in to comment.