File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
docs/pages/world/reference Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ Initializes the World by installing the core module.
6262_ Only the initial creator can initialize. This can be done only once._
6363
6464``` solidity
65- function initialize(IModule initModule) public prohibitDirectCallback;
65+ function initialize(IModule initModule) public virtual prohibitDirectCallback;
6666```
6767
6868** Parameters**
@@ -78,7 +78,7 @@ Installs a given root module in the World.
7878_ The caller must own the root namespace._
7979
8080``` solidity
81- function installRootModule(IModule module, bytes memory encodedArgs) public prohibitDirectCallback;
81+ function installRootModule(IModule module, bytes memory encodedArgs) public virtual prohibitDirectCallback;
8282```
8383
8484** Parameters**
@@ -384,15 +384,15 @@ DYNAMIC FUNCTION SELECTORS
384384Accepts ETH and adds to the root namespace's balance.
385385
386386``` solidity
387- receive() external payable;
387+ receive() external payable virtual ;
388388```
389389
390390#### fallback
391391
392392_ Fallback function to call registered function selectors._
393393
394394``` solidity
395- fallback() external payable prohibitDirectCallback;
395+ fallback() external payable virtual prohibitDirectCallback;
396396```
397397
398398## WorldFactory
You can’t perform that action at this time.
0 commit comments